Q67
Correct Declaration of Values to variables 'a' and 'b'?
A.
int a = 32, b = 40.6;
B.
int a = 42; b = 40;
C.
int a = 32; int b = 40;
AnswerD.
int a = b = 42;
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board