Difference between puthar and putch
Answers
Answered by
1
fputc() writes the character c, cast to an unsigned char, to stream.
putc() is equivalent to fputc() except that it may be implemented as a macro which evaluates stream more than once.
putchar(c) is equivalent to putc(c, stdout).
Similar questions