Tag Archives: fgets
fgets – scanning string with spaces
Prototype : – #include <stdio.h> char *fgets(char *s, int size, FILE *stream); Defination :- fgets() reads in at most one less than size characters from stream and stores them into the buffer pointed to by s. Reading stops after an … Continue reading