Answers for "difference between fscanf and sscanf"

0

difference between fscanf and sscanf

scanf reads from the standard input stream stdin. 
fscanf reads from the named input stream.
sscanf reads from the character string s. 
Each function reads characters, interprets them according 
to a format, and stores the results in its arguments.
Posted by: Guest on March-11-2020

Code answers related to "difference between fscanf and sscanf"

Browse Popular Code Answers by Language