1. The document discusses the printf() and scanf() functions in C for output and input. It explains how to use format specifiers in printf() such as %d, %f, %c, %s.
2. It also explains how to use scanf() to input values from the keyboard by specifying the address of the variable using &.
3. An example is given showing how to use scanf() to input an integer and float and then print them out.