1.

What will be the output of the program if value 25 given to scanf()?

#include<stdio.h> int main()
{ int i; printf("%d n", scanf("%d", &i)); return 0;
}

A. 25
B. 2
C. 1
D. 5
Answer» D. 5


Discussion

No Comment Found