Why we need to use # include < stdio.h >?
# include < stdio.h >: Standard input output. The following are
the list of functions are in stdio.h
gets() It gets a string terminated by a newline
character from the standard input stream stdin.
puts() It takes a string which is to be sent to
output device.
Etc.