You are on page 1of 1

#include<iostream>

#define SIZE 3
using namespace std;
int main(){
int mat[][3]={{1,2,3},{6,4,5},{7,8,9}};
for(int i=0;i<SIZE;i++){
for(int j=0;j<SIZE;j++){
}
}
return 0;
}

You might also like