|
|
|
|
|
by atahanacar
1073 days ago
|
|
>fgetc() reads the next character from stream and returns it as an unsigned char cast to an int, or EOF on end of file or error. >getc() is equivalent to fgetc() except that it may be implemented as a macro which evaluates stream more than once. >getchar() is equivalent to getc(stdin). |
|