You are on page 1of 4

INTRODUCTION Sushant Shandilya

For Business Purpose

TO C++ shandilyasushant@outlook.com
C++
• The name C++ was coined by Rick Mascitti. In C++, the "++"
is an increment operator of C language
• It’s a general purpose language, means used for building
softwares.
• C++ is compiler based language and file extension is c++ or cpp.
• Can be downloaded free from https://
sourceforge.net/projects/mingw/files/latest/download
• C++ is fast and powerful, nowadays it is used for competitive
coding.
C++ COMPILER OPERATION
1. PREPROCESSOR : process the header file and create temp
files.
2. COMPILER : The temp file is taken as input and object files are
created, if the code is syntactically correct.
3. LINKER : Links the library files, runtime files along with the
created object files and form a complete executable program that is
stored in a single file.
The executable file is the machine code which is understandable by the
computer to perform the operation.
HELLO C++
First program in c++ 
--------------------------------------------------------------------------------------
#include<iostream>
using namespace std;
int main() // Execution start from here
{
cout<<“Hello C++”;
return 0;
}

You might also like