Computer Science, asked by seshandharshini, 14 hours ago

4. State the format string characters of scanf() statement.​

Answers

Answered by skyheigh0
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