C++ - The Introduction

pushpend3r

Pushpender Singh

Posted on December 2, 2019

C++ - The Introduction

C++ Logo

What is C++?

C++ is the Programming Language use to create computer programs.

It is a Cross Platform Language means programs made in c++ are able to run on different platforms like Windows/Linux etc with no or little modifications.

It was developed by Bjarne Stroustrup at Bell labs in 1979.

It is a Object Oriented Language (Note:- will discuss about it).

How to Create Programs in C++?

To do that we need :-

Hard way

  1. Text Editor :- Where you type code. It could be Notepad but VSCode will be better.
  2. Compiler:- who convert our file into computer's understandable form.

Note:- file extension should be .cpp and compiler will be according to your platform (Windows/Linux etc).

Easy Way

Just download one of these softwares:-

  1. DevC++ (Link)
  2. Code::Blocks (Link)

Note:- These are called IDEs (Integrated Development Environment).
Simply put Text Editor + Compiler = IDE.

Super Easy way

There are Online C++ Compilers:-

  1. Link 1
  2. Link 2

#Important terms

  1. Source File :- File you create with text editor.
  2. Executable File :- File that computer can understand/run directly.
  3. Compilation :- Process of converting source file into Executable file.

That's it for today.

If you find anything incorrect or know about it let me know in the comments it would be really appreciated.

Bye Guys Have a good day.

💖 💪 🙅 🚩
pushpend3r
Pushpender Singh

Posted on December 2, 2019

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

round функция.
cpp round функция.

October 29, 2024

do while loop
programming do while loop

November 2, 2024

I'm a beginner
productivity I'm a beginner

September 23, 2024