xxxxxxxxxx
char ch_arr[3][10] = {
{'s', 'p', 'i', 'k', 'e', '\0'},
{'t', 'o', 'm','\0'},
{'j', 'e', 'r', 'r', 'y','\0'}
};
xxxxxxxxxx
#include <stdio.h>
int main()
{
char str[5][10];
printf("enter the strings...\n");
for(int i =0; i < 5; i++)
scanf("%s", str[i]);
printf("All strings are...\n");
for(int j =0; j < 5; j++)
printf("%s\n", str[j]);
}
xxxxxxxxxx
char **strs;
int num_of_strs = 10;
strs = malloc (sizeof(char *) * num_of_strs );