Declaration:
int putc(int c, unsigned long stream);
Description
Outputs a character to a stream.
putc outputs character c to the stream specified by stream.
Returned Value
On success, putc returns the character printed, c. On error, putc returns EOF.
fprintf
fputc
fputs
fwrite
getc
printf
putw
|