array of strings in c
char ch_arr[3][10] = {
{'s', 'p', 'i', 'k', 'e', '\0'},
{'t', 'o', 'm','\0'},
{'j', 'e', 'r', 'r', 'y','\0'}
};
array of strings in c
char ch_arr[3][10] = {
{'s', 'p', 'i', 'k', 'e', '\0'},
{'t', 'o', 'm','\0'},
{'j', 'e', 'r', 'r', 'y','\0'}
};
create array of strings in c from user input
#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]);
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us