//c的令牌 分号 注释 标识符 关键字 空格 #include <stdio.h> int main (){ //必须以分号结束 /* */ 多行注释 //空格会以输入展示 printf("helle world! n"); return 0; }