Home » C Programming » Pointers » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    int main()
    {
    char str[12][16] = {"Interview", "Mania"};
    printf("%d", sizeof(str));
    return 0;
    }
    1. Interview
    2. Mania
    3. 192
    4. Garbage value
    5. None of these
Correct Option: C

192



Your comments will be displayed only after manual approval.