Ask Question
3 August, 14:53

In a working C program, the string literal "CBC" can be assinged to the variable word as follows without causing a compile error. char word[3]a. true. b. false

+3
Answers (1)
  1. 3 August, 18:39
    0
    false

    Explanation:

    string literal cannot be be assigned to a fixed length char array. however, it can be assigned using a char * e. g:

    char * word = (char*) "CCA/0";
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “In a working C program, the string literal "CBC" can be assinged to the variable word as follows without causing a compile error. char ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers