罗蒲元茶:vc中的PUCHAR是干什么的?

来源:百度文库 编辑:神马品牌网 时间:2024/05/05 15:28:32
vc中的PUCHAR是干什么的?谢谢各位的回答

输出一个字符.

Syntax:

#include <stdio.h>
int putchar( int ch );

The putchar() function writes ch to STDOUT. The code

putchar( ch );

is the same as

putc( ch, STDOUT );

The return value of putchar() is the written character, or EOF if there is an error.

http://www.cppreference.com/stdio/putchar.html