#define MAX 500 main() { int arr[MAX] [MAX]; int i,j; for (i=1;i<MAX;i++){ for (j=1;j<MAX;j++){ arr[j][i] = 1; } } }