| www.delorie.com/djgpp/doc/libc-2.01/libc_264.html | search |
#include <stdio.h> int fgetc(FILE *file);
Returns the next character in the given file as an unsigned char.
The given char (value 0..255) or EOF at end-of-file.
int c; while((c=fgetc(stdin)) != EOF) fputc(c, stdout);
Go to the first, previous, next, last section, table of contents.
| prev next webmaster | delorie software privacy |
| Copyright © 1997 | Updated Apr 1997 |