主函数的结束大括号位置错了。
输出格式%后面少了c
修改后代码如下所示
#include
int main(void)
{
char a = 'x';
printf("你好,互联网技术%c\n", a);
return 0;
}
printf写错了啊