1
int array_2d(int a[3][3]){ int s=0; for(int i=0;i<3;i++) for(int j=0;j<3;j++) s+=a[i][j]; return s; }