Standard I/O in C
scanf
int scanf ( const char * format, ... );
Read formatted data from stdin
Reads data from stdin and stores them according to the parameter format into the locations pointed by the additional arguments.
The additional arguments should point to a...
kaustubhk.hashnode.dev5 min read