Input and Output – Part III (Writing Output Data)

We have already known what conversion specifiers are and how to read input data from the user. Now it’s time to know about how to write an output data to the console. Let’s get started……..

Writing Output Data

Function To Write Output Data In C

Output data can be written from computer memory to standard output device like a monitor. To facilitate this, C provides the printf( ) library function. Continue reading