Answers for "c access array of strings"

C
0

string array in c

char ch_arr[3][10] = {
                         "spike",
                         "tom",
                         "jerry"
                     };
Posted by: Guest on November-16-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 "C"

Browse Popular Code Answers by Language