Input refers to accepting data while output refers to presenting data. Normally the data is accepted from keyboard and is outputted onto the screen. C language has a series of standard input-output (I/O) functions. Such I/O functions together form a library named stdio.h. Irrespective of the version of C language, user will have access to all such library functions. These library functions are classified into three broad categories. a) Console I/O functions : Functions which accept input from keyboard and produce output on the screen. b) Disk I/O functions : Functions which perform I/O operations on secondary storage devices like floppy disks or hard disks. c) Port I/O functions : Functions which perform I/O operations on various ports like printer port, mouse port, etc. Console I/