Examveda

What will be the output of the following C code?
#include <stdio.h>
int main()
{
    int i = 10, j = 2;
    printf("%d\n", printf("%d %d ", i, j));
}

A. Compile time error

B. 10 2 4

C. 10 2 2

D. 10 2 5

Answer: Option D


This Question Belongs to C Program >> File Input Output

Join The Discussion

Related Questions on File Input Output