Computer Science - Object Oriented Programming Using C++ - Discussion

Discussion Forum : Object Oriented Programming Using C++ - Section 11 (Q.No. 8)
8.
Which of the following creates a String named constant called partNo, whose value is AB45?
const char[4] partNo = "AB45";
const char[5] partNo = 'AB45';
const char[5] partNo = "AB45";
const char partNo[5] = "AB45";
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.