

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the following code : char symbol[3]={‘a’,‘b’,‘c’};for (int index=0; index<3; index++)cout << symbol [index]; |
A. | a b c |
B. | “abc” |
C. | abc |
D. | ‘abc’ |
Answer» D. ‘abc’ | |