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

25 13 Garbage value



Your comments will be displayed only after manual approval.