fgetc in c code example
Example 1: fgets c
<open file>
while(fgets(<char array>, <size of array>, <file pointer>) != null)
Example 2: what is the function prototype for fgetc()
int fgetc(FILE *filename);
Example 3: what is the function prototype for fputc()
int fputc(const char ch, FILE *filename);