Kizspy | Question: 11
(Choose 1 answer)
FUBVERSLOW.COM
What is the results will be displayed on the screen after executing the following code:
char s[] = "AbCd";
printf("%d,%d,%d,%d", s[1], s[2], [3], s[4]);
A. 97;98:99;100
B. 65;66;67;68
C. 65;98:67;100
D. 98;67;100;0