From the course: C Standard Library

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Formatted I/O example

Formatted I/O example - C Tutorial

From the course: C Standard Library

Start my 1-month free trial

Formatted I/O example

- [Instructor] Now let me write some code for another very basic echo application, which will take in all of the variables you see in the main function. I will do that for a specific format on each of the variables, and I will print them all out in the same specific format. I will do that with scanf and printf. So let's get started. First, remember that scanf receives two arguments. First, the format string, and then a list of variables, which will take in all of the values coming from the standard input. So the string will only contain format specifiers separated by spaces. So let's start with the integer value and the spaces I enter in this string are interpreted by scanf as white spaces. So this applies for any number of spaces in the input or new line characters. Next, let's specify the character. Next the floating point number, next the double variable, which is long floating point. And now let me do something very nice for this string. So the specifier for a string is percentage…

Contents