#include <stdio.h>

int main() {
    int arr[10][10];
    int i=0,j=0;
    for (i=0;i<5;i++){
        for (j=0;j<5;j++){
            scanf("%d",&arr[i][j]);
        }
    }
    for (i=0;i<5;i++){
        for (j=0;j<5;j++){
            printf("%d\t",arr[i][j]);
        }
        printf("\n");
    }
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: