4. State the format string characters of scanf() statement.
Answers
Answered by
1
Answer:
The scanf function allows you to accept input from standard in, which for us is generally the keyboard. scanf("%d", &b); ... The program will read in an integer value that the user enters on the keyboard (%d is for integers, as is printf, so b must be declared as an int) and place that value into b.
Explanation:
now please mark me brainly
Similar questions