I am trying to create an array of strings in C. If I use this code:
char (*a[2])[14]; a[0]=\"blah\"; a[1]=\"hmm\";
gcc gives me \"warning:
char name[10][10] int i,j,n;//here "n" is number of enteries printf("\nEnter size of array = "); scanf("%d",&n); for(i=0;i
Here try this!!!