C++ Env Setup
Build + Run Code
Compiler Setup
Building & Running your Code
Machine Code
C++
Source Code
C++
Source Code
Machine Executable Code
Text Editor
C++ Compiler
Lightweight yet powerful text editor.
sublimetext.com/
Compiler is a program that translates your programming language source code into a machine executable code.
#include<iostream>
using namespace std;
int main(){
// Your Code Goes Here
cout <<"Hello World!";
return 0;
}
Source Code
Compiler
Machine Code
Lets build and run our first C++ Code using
An integrated development environment (IDE) is software for building applications that combines common developer tools into a single graphical user interface (GUI).
IDE is a software that allows you
to create, edit, run, test & debug your code
from a single GUI.
Code::Blocks
Eclipse
XCode (Mac)
CLion etc.