Answers for "array de strings c"

C
1

c array of strings

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

string array in c

char ch_arr[3][10] = {
                         "spike",
                         "tom",
                         "jerry"
                     };
Posted by: Guest on November-16-2021

Code answers related to "C"

Browse Popular Code Answers by Language