Kizspy | Question: 18 (Choose 1 answer)
Which of the following statements has a different result from the other statements?
A. char c1 = 'B'; printf("%c",c1);
B. char c2 = 066; printf("%c", c2);
C. char c3 = 0x42; printf("%c", c3);
D. char c4 = 0102; printf("%c",c4);