Ask Question
19 September, 17:44

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

+1
Answers (1)
  1. 19 September, 18:47
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers