+ 1
what will this printf print ?
int a; printf("%d",scanf("%d",&a)); //it displays 1 irrespective of input and it would be really helpful if anyone could explain this
1 Antwort
+ 5
scanf() returns the number of inputs taken successfully. In this case, scanf() takes 1 variable, i.e. a as input. So it will return 1.
EDIT: This link may be helpful
https://stackoverflow.com/questions/10469643/value-returned-by-scanf-function-in-c