The C standard library provides functions allowing us to accept data/characters from the standard input and output data/characters to the standard output. The standard input is usually a keyboard. The standard output is typically a monitor/console window to which we output the data.
28.1 Standard Input
This chapter describes a few functions that allow us to accept data from the standard input/keyboard. Here, we mention the scanf and the fgets functions. Worth noticing is that these functions are not part ...