Answers for "fgetc in c"

C
14

fgets c

<open file>
while(fgets(<char array>, <size of array>, <file pointer>) != null)
Posted by: Guest on December-06-2019
0

what is the function prototype for fgetc()

int fgetc(FILE *filename);
Posted by: Guest on April-27-2020
0

what is the function prototype for fputc()

int fputc(const char ch, FILE *filename);
Posted by: Guest on April-27-2020

Code answers related to "C"

Browse Popular Code Answers by Language