prev


Multi-dimensional Integer Arrays:

68.Read an integer matrix (09.03.2010)

/*
Program# 68
date : 28-12-2008
Read & Display Matrix
*/

#include <stdio.h>
main(){
int i=0,j=0,a[3][3];

while(i<3){
j=0;
while(j<3){
scanf("%d",&a[i][j]);
j=j+1;
}
i=i+1;
}
//display
i=0;
while(i<3){
j=0;
while(j<3){
printf("%d",a[i][j]);
j=j+1;
}
i=i+1;
}
}



next
blog comments powered by Disqus