Built-in/C + + GCC development environment under Ubuntu system

Source: Internet
Author: User

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.