Home » C Programming » Input & Output » Question
  1. What will be the output of the following C code?
    #include 
    int main()
    {
    int n = 15, m = 8;
    printf("%d\n", printf("%d %d ", n, m));
    }
    1. 15 8 5
    2. 15 8
    3. Garbage value
    4. Compilation Error
    5. None of these
Correct Option: A

15 8 5



Your comments will be displayed only after manual approval.