First, using the GCC development environment
Open Terminal ctrl+alt+t;
Ubuntu-12.10-desktop-i386 has gcc (GNU C compiler) installed by default,
The GCC version information is as follows:[email protected]: ~$ gcc--version
GCC (Ubuntu/linaro 4.6.3-1ubuntu5) 4.6.3
copyright©2011 Free Software Foundation, Inc.
The basic steps for compiling a C program using GCC are as follows (for example, "Hello,world" program):
1. Edit source program [email protected]: ~/clang$ gedit hello.c
#include <stdio.h>
int main (void)
{
printf ("hello,world!\n");
return 0;
}
2. Compile the source program [email protected]: ~/clang$ gcc hello.c-o Hello
If the source program is written using the C99 standard, add the-STD=C99 option as follows:[email protected]: ~/clang$ gcc hello.c-o hello-std=c993.
Run executable [email protected]: ~/clang$ ./hello
Built-in/C + + GCC development environment under Ubuntu system