Kizspy | Question: 11 (Choose 1 answer)
char a[] = "AbCdEf";
What is the results will be displayed on the screen after executing the following code:
char *s=a;for (; *s; s+=3)
printf("%s", s);
A. Runtime error
B. Ad
C. Compiler error
D. AbCdEfdEf
E. AbC
F. dEf