Home » C Programming » Pointers » Question
  1. What are the elements present in the array of the following C code?
    int num[4] = {10};
    1. 10, 10, 10, 10
    2. 0, 0, 0, 0
    3. 10, 0, 0, 0
    4. 0, garbage value, garbage value, garbage value
    5. 10, garbage value, garbage value, garbage value
Correct Option: C

10, 0, 0, 0



Your comments will be displayed only after manual approval.