Answers for "string representation of array in c"

0

allocate a array on strings in c

char **strs;
int num_of_strs = 10;

strs = malloc (sizeof(char *) * num_of_strs );
Posted by: Guest on March-26-2022

Code answers related to "string representation of array in c"

Browse Popular Code Answers by Language