标签:-o hello 第一个 语言 名称 执行 lan 编写 printf
创建helloworld.c
// 程序头文件
#include <stdio.h>
// 主入口函数
int main(int arc, char* argv[])
{
printf("Hello World!\n");
return 0;
}
标签:-o hello 第一个 语言 名称 执行 lan 编写 printf
原文地址:https://www.cnblogs.com/fandx/p/12122779.html