一、使用gcc开发环境
打开终端 ctrl+Alt+T;
ubuntu-12.10-desktop-i386默认安装了gcc(GNU C compiler),
gcc版本信息如下:[email protected]:~$ gcc --version
gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Copyright © 2011 Free Software Foundation, Inc.
使用gcc编译C程序的基本步骤如下(以“Hello,world”程序为例):
1. 编辑源程序 [email protected]:~/clang$ gedit hello.c
#include <stdio.h>
int main(void)
{
printf("Hello,world!\n");
return 0;
}
2. 编译源程序 [email protected]:~/clang$ gcc hello.c -o hello
如果使用了C99标准编写源程序,则要加上-std=c99选项,如下:[email protected]:~/clang$ gcc hello.c -o hello -std=c993.
运行可执行文件 [email protected]:~/clang$ ./hello
时间: 2024-10-08 00:18:39