#include <stdio.h>
int main(void)
{
int i,j;
char anika[5][5]={'A','N','I','K','A',
'A','N','I','K','A',
'A','N','I','K','A',
'A','N','I','K','A',
'A','N','I','K','A',};
for(i=0;i<5;i++){
for(j=0;j<5;j++)
{
printf("%c",anika[i][j]);
}
printf("\n");
}
system("pause");
return 0;
}
This is the output:
ANIKA ANIKA ANIKA ANIKA ANIKA
0 comments:
Post a Comment