请教大家一个putchar()的有关问题!

请问大家一个putchar()的问题!!!!!!char chmputchar(ch)//执行完putchar()函数后,ch变成什么了?[解决

请问大家一个putchar()的问题!!!!!!

char ch='m';
putchar(ch);
//执行完putchar()函数后,ch变成什么了?

[解决办法]
还不是m。。。。
[解决办法]
int getc(FILE *stream)

returns the next character of stream as an unsigned char (converted to an int), or EOF if end of file or error occurs.

为何是下一个字符,GOOGLE 文件指针