/* 范例3-2 */#includestdio.h /* 标准输入输出头文件此行经编译后会将stdio.h展开 */void main(void) /* 主函数(程序进入点) */{printf(需要有头文件stdio.h才能使用printf()作输出的功能\n);getchar();}