1. The document discusses various input/output functions in C including printf(), scanf(), putchar(), getchar(), gets(), and puts(). It provides examples of using format specifiers like %d, %c, %s in printf and scanf. 2. Function prototypes and uses of various I/O functions are demonstrated through simple code snippets. Examples show declaring and initializing variables, performing arithmetic operations, character manipulation, string input/output and formatted output. 3. Comments explain the purpose and usage of standard input/output header file stdio.h and each I/O function discussed. Formatted output using field widths and justifications is also demonstrated.