|
Valid declarations
Which of the following lines are valid declarations?
Select the three correct answers.
char a = '\u0061';
char 'a' = 'a';
char \u0061 = 'a';
ch\u0061r a = 'a';
ch'a'r a = 'a';
Can someone give me the correct declarations with explanations.
|