#include<stdio.h>
int main()
{
int n,i,j;
char p[10][10];
printf("please enter 10 words");
for(i=0;i<10;i++)
{
for(j=0;j<10;j++)
{
gets(p[i][j]) ;
}
printf("\n");
}
for(i=0;i<10;i++)
{
for(j=0;j<10;j++)
{
printf("%c",p[i][j]);
}
printf("\n");
}
return 0;}
I actualy want to read 10 string from keyboard and print them but not gettin the output
wht to do guys:S
thanks in advance:|