Question:Given the following array:int a[8] = {1,2,3,4,5,6,7,0}; what would be the output of printf("%d",a[4]); ?
int a[8] = {1,2,3,4,5,6,7,0};
A 3 B 4 C 5 D 6 E 7
+ AnswerC
+ Report