欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

用C语言写一个Helloworld_实现第一步编译运行

程序员文章站 2023-08-30 20:42:28
编写第一个hello world 创建helloworld.c 编译自己的第一个程序 Mac os clang g o hellword helloword.c g: 是输出调试信息 o: 是输出可执行程序 hellword: 最终生成的文件名称 helloword.c: 指定编译的文件 Linux ......

编写第一个hello world

创建helloworld.c

// 程序头文件
#include <stdio.h>

// 主入口函数
int main(int arc, char* argv[])
{
  printf("hello world!\n");
    return 0;
}

编译自己的第一个程序

  • mac os
    • clang -g -o hellword helloword.c
    • -g: 是输出调试信息
    • -o: 是输出可执行程序
    • hellword: 最终生成的文件名称
    • helloword.c: 指定编译的文件
  • linux
    • gcc -g -o hellword hellword.c
    • -g: 是输出调试信息
    • -o: 是输出可执行程序
    • hellword: 最终生成的文件名称
    • helloword.c: 指定编译的文件