#include <stdio.h> //include-请求调用数据 stdio.h-一个文件
int main() //int-整数类型 main-主函数入口
{
printf(“hehe\n”); //printf-输出函数
}

更多推荐

C语言入门基础代码