Home » C Programming » Pointers » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    int main()
    {
    int num[6] = {6, 7, 8, 9, 10};
    printf("%d\n", *num);
    }
    1. 10
    2. 9
    3. 8
    4. 7
    5. 6
Correct Option: E

6



Your comments will be displayed only after manual approval.