例4.1输出单个字符。
#include <stdio.h>
main()
{char a,b,c;
a='b';b='o';c='y';
putchar(a);putchar(b);putchar(c);

运行结果:
boy