Home > Back-end >  On reading and writing
On reading and writing

Time:09-24

Which corresponds to the printf and the scanf read, which corresponds to write?

CodePudding user response:

Please check under the C function library

CodePudding user response:

Printf corresponds to the writing, the scanf corresponds to read

CodePudding user response:

Have you read the,,,,

CodePudding user response:

First of all, remember to include the header file & lt; Stdio. H>
The scanf () as the input function, such as
 int a; 
The scanf (" % d ", & amp; A);

The printf () for the output function, such as
 int b=10; 
Printf (" % d ", b);
Printf (" % s ", "Hello World!" )

CodePudding user response:

This is the problem of the concept of basic

CodePudding user response:

I see road, refueling ah

CodePudding user response:

What's the problem? The question is "water"

CodePudding user response:

The scanf corresponding reading, printf correspondence writing
  • Related