Answers for "what does fgets return"

C
1

fgets

char string[100];
while(fgets(string, 100, fp)) {
    printf("%s\n", string);
}
Posted by: Guest on April-04-2022

Code answers related to "what does fgets return"

Code answers related to "C"

Browse Popular Code Answers by Language