1.

What will be the output of the following C code?
#include <stdio.h>
void main()
{
int look_up[100] = {10, 11, 12, 13, 14, 15, 16, 17, 18, 19};
printf("%d", look_up[6]);
}

A. 10
B. 12
C. 14
D. 16
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs