HOW TO FIND THE OUTPUT OF A PROGRAM IN OPERATORS, C PROGRAMMING LANGUANGE, AND PLEASE GIVE STEP BY STEP EXPLANATION
Answers
Answered by
2
Answer:
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'.
Explanation:
Similar questions