Home
User Guide
DB Recovery
Download
Documents
FAQ
Books
About Me
C Programs
Stats

/* Program# 63
   date : 28-12-2008
   Read & Display  10 nos - Integer Array
	
*/

#include 
main(){
int i,a[10];
i=0;
while(i<10){
scanf("%d",&a[i]);
i=i+1;
}
i=0;
while(i<10){
printf("\n a[%d]=%d",i,a[i]);
i=i+1;
}
}





Powered by
Open Source Programmers