Answers for "pass array of string to function in 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
0

c array of strings

char commands[][4] = {
        "add",
        "prn",
        "lea",
        "inc",
        "mov"
};
Posted by: Guest on January-07-2022

Code answers related to "pass array of string to function in c"

Browse Popular Code Answers by Language