#include <stdioh>
int main()
{
char a='B',b='Q',c='Y'; //定义3个字符变量并初始化
putcher(a); //向显示器输出字符B
putcher(b); //向显示器输出字符O
putcher(c); //向显示器输出字符Y
putcher('\n');
return ;
}
#include <stdioh>
int main()
{
int a=66,b=79,c=89; //定义3个字符变量并初始化
putcher(a); //向显示器输出字符B
putcher(b); //向显示器输出字符O
putcher(c); //向显示器输出字符Y
putcher('\n');
return 0;
}