Answers for "how to make a array of strings in c"

0

array of string in c

const char *a[2];
a[0] = "blah";
a[1] = "hmm";
Posted by: Guest on February-17-2022

Code answers related to "how to make a array of strings in c"

Browse Popular Code Answers by Language