C Programming - Input / Output - Discussion

Discussion Forum : Input / Output - Find Output of Program (Q.No. 13)
13.
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;
}
25
2
1
5
Answer: Option
Explanation:

The scanf function returns the number of input is given.

printf("%d\n", scanf("%d", &i)); The scanf function returns the value 1(one).

Therefore, the output of the program is '1'.

Discussion:
23 comments Page 3 of 3.

Amarjit said:   1 decade ago
Excellent answer.

Vjagtap said:   6 years ago
Then what is 25 ?

Mani said:   1 decade ago
Thank you.


Post your comments here:

Your comments will be displayed after verification.