Hello,
I would like to as how shoul i input strings into array from keyboard?
Thanks in advance.
my code is:
:confused:Code:#include <stdio.h>
void main () {
char *string[3];
int i;
for(i=0;i<3;i++)
scanf("%s",&string[i]);
for(i=0;i<3;i++)
printf("%s",string[i]);
}

