Kizspy | Question: 11
(Choose 1 answer)
What is the results will be displayed on the screen after executing the following code:
char a] = "Ab";
char *s = a;
FJOVERFLOW.COM
int t=1;
for (; *s; ++s)
t*=*s;
printf("%d", t);
A. Garbage value
B. 0
C. Compiler error
D. 6370
E. 65
F. 98