Compile and run the c ++ program using a terminal in Ubuntu7.10

Source: Internet
Author: User
In Ubuntu7.10, IDE tools are not used, and only terminals are used. Test-& gt; compile-& gt; run the tool in one breath! Steps: 1, make sure that the gcc has been installed in Ubuntu7.10, Installation Method: sudoapt-getinstallgcc2, write a simple cpp file test. cpp, put in the specified place example: # inclu

In Ubuntu7.10, IDE tools are not used, and only terminals are used. Test-> compile-> run, in one breath!
Procedure:
1. Ensure that gcc has been installed in Ubuntu7.10. Installation Method: sudo apt-get install gcc
2. Compile a simple cpp file test. cpp and place it in a specified place.
Example:
# Include
Using namespace std;

Int larger (int, int );
Int main (){
Int I, j;
Cout <"enter two numbers:" < Cin> I> j;
Cout <"a large number is:" < }

Int larger (int a, int B ){
Return a> = B? A: B;
}

Save this program in/home/user/desktop and open the terminal (note that user is your system user name)
3. Compile: g ++/home/user/desktop/test. cpp-o test. out
4. If no error is prompted, run the compiled program:./test. out.

Note: test. out can be replaced with any name.

Related Article

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.