Answers for "how to make arraey of string c"

-2

array of string in c

char a[2][14];
strcpy(a[0], "blah");
strcpy(a[1], "hmm");
Posted by: Guest on December-31-2021

Code answers related to "how to make arraey of string c"

Browse Popular Code Answers by Language