Multiple Choices
Answer (Choose 1 answer)
What is the output when the sample code below is executed?
int a[26],t;
a[0]=100;a[25]=200;
t=a[25];
a[25]=a[0];*a = t
printf("%d %d", a[0],a[25]);
A. 100 100
B. 200 100
C. 200 200
D. 100 200
E. compiler error