Home » C Programming » Input & Output » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    int main()
    {
    int m = 31, n = 13, p = 30;
    printf("%d %d ", m, n, p);
    }
    1. Compilation Error
    2. Garbage value
    3. 31 13 30
    4. 13 30
    5. 31 13
Correct Option: E

31 13



Your comments will be displayed only after manual approval.