Computer Science, asked by vector6330, 11 months ago

Difference between puthar and putch

Answers

Answered by sohamsantra83
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