Home » C Programming » Functions » Question
  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]);
    }
    1. 10
    2. 12
    3. 14
    4. 16
    5. None of these
Correct Option: D

16



Your comments will be displayed only after manual approval.