Answers for "scanf prototype in c"

0

scanf prototype in c

int scanf(const char *format, ...)
/*  
	It returns the number of items of the argument list successfully read. 
	If a reading error happens or the end-of-file is reached while reading, 
    the proper indicator is set (feof or ferror) and, if either happens before any 
    data could be successfully read, EOF is returned.	
*/
Posted by: Guest on January-30-2022

Code answers related to "Assembly"

Browse Popular Code Answers by Language