
- C++ Basics
- C++ Home
- C++ Overview
- C++ Environment Setup
- C++ Basic Syntax
- C++ Comments
- C++ Data Types
- C++ Variable Types
- C++ Variable Scope
- C++ Constants/Literals
- C++ Modifier Types
- C++ Storage Classes
- C++ Operators
- C++ Loop Types
- C++ Decision Making
- C++ Functions
- C++ Numbers
- C++ Arrays
- C++ Strings
- C++ Pointers
- C++ References
- C++ Date & Time
- C++ Basic Input/Output
- C++ Data Structures
- C++ Object Oriented
- C++ Classes & Objects
- C++ Inheritance
- C++ Overloading
- C++ Polymorphism
- C++ Abstraction
- C++ Encapsulation
- C++ Interfaces
How to compile and run the C++ program?
Once you've got your compiler and source program ready, it is very easy to compile and run a C++ program. Assuming that you've installed GCC compiler, and you have a source.cpp file that you want to compile, follow the following instructions to compile and run it.
Step 1 − Open a new terminal window or cmd if you are on windows.
Step 2 − Change the directory to the directory in which you have your source.cpp file. For example, if it is in C:/Users/Dell/Documents, enter your command line −
$ cd 'C:/Users/Dell/Documents'
Step 3 − Now enter the following command to compile the source file using g++.
$ g++ -o <name-you-want-to-give> source.cpp
In place of <name-you-want-to-give> replace it by any name like myprogram, etc.
Step 4 − Run it! Now you can run the program using −
$ ./myprogram
- Related Articles
- How to compile & run a Java program using Command Prompt?\n
- Explain Compile time and Run time initialization in C programming?
- How to Edit, Compile, and Execute a C++ Program?
- How to compile 32-bit program on 64- bit gcc in C and C++
- How to compile a java program
- C program that won’t compile in C++
- Are Generics applied at compile time or run time?
- How to compile and execute C# programs on Linux?
- How to compile and execute C# programs on Windows?
- What is the difference between compile time errors and run time errors in Java?
- How to run Perl Program?
- How to run Python Program?
- How to compile unsafe code in C#?
- How to compile and execute C# programs on Mac OS?
- Compile 32-bit program on 64-bit gcc in C and C++

Advertisements