* Write a Program to fill 3 X 3 integer array with the fallowing format.
#include<stdio.h> #include<conio.h> void main() { int a[3][3],i,j; clrscr(); for(i=0;i<3;i++) { for(j=0;j<3;j++) a[i][j]=0; } for(i=0;i<3;i++) { for(j=0;j<3;j++) printf("%d ",a[i][j]); printf("\n"); } getch(); } |
* Write a Program to fill 3 X 3 integer array with the fallowing format.
#include<stdio.h> #include<conio.h> void main() { int a[3][3],i,j; clrscr(); for(i=0;i<3;i++) { for(j=0;j<3;j++) { if(i==j) a[i][j]=1; else a[i][j]=0; } } for(i=0;i<3;i++) { for(j=0;j<3;j++) printf("%d ",a[i][j]); printf("\n"); } getch(); } |
* Write a Program to fill 3 X 3 integer array with the fallowing format.
#include<stdio.h> #include<conio.h> void main() { int a[3][3],i,j; clrscr(); for(i=0;i<3;i++) { for(j=0;j<3;j++) { if(i>j) a[i][j]=3; else if(i==j) a[i][j]=1; else a[i][j]=2; } } for(i=0;i<3;i++) { for(j=0;j<3;j++) printf("%3d",a[i][j]); printf("\n"); } getch(); } |
* Write a Program to fill 5 X 5 integer array with the fallowing format.
#include<stdio.h> #include<conio.h> void main() { int a[5][5],i,j; clrscr(); for(i=0;i<5;i++) { for(j=0;j<5;j++) { if(i==0||j==0||i==4||j==4) a[i][j]=1; else if(i==2&&j==2) a[i][j]=5; else a[i][j]=0; } } for(i=0;i<5;i++) { for(j=0;j<5;j++) printf("%d ",a[i][j]); printf("\n"); } getch(); } |
________________________________________
_____________________________________________________________________________
Post a Comment