Solved

Which of the Following Correctly Declares Name to Be a Character

Question 21

Multiple Choice

Which of the following correctly declares name to be a character array and stores "William" in it?


A) char name[6] = "William";
B) char name[7] = "William";
C) char name[8] = "William";
D) char name[8] = 'William';

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions