The function int scanf(const char *format, …); reads formatted data from stdin and stores them in the variables pointed by the additional arguments. Additional arguments must point to variables of the same type as specified in the format. Format is a null terminated string that contains Whitespace character, Non-whitespace character and Format specifiers. The syntax of the ... Read more