基本概念-编写第一个C程序

参考:http://edu.51cto.com/roadmap/view/id-59.html

如下简单代码

#include <stdio.h>
int main()
{
    printf("Hello World!\n");
    return 0;
}

以上代码保存在“world.c”文件中,使用gcc或cc对该文件进行变编译

执行“./a.out”可执行文件。

注意多个c的源文件时候,不能存在多个main()函数。否则会报错。

c程序编写到执行的过程如下

  1. 编辑源代码

  2. 预处理

  3. 编译

  4. 链接

  5. 执行

简单C程序的组成部分

  1. 指令 #include <stdio.h>

  2. 函数  main(){return 0;}

  3. 语句 ; 进行分割

你可能感兴趣的:(c,程序)