Introduction to C++

Benefits of C++ over C language

Why should we have to study C++?

What do Compilers, Archiver, Linker, Toolset, and IDE mean?

IDE for C++

For example installation of dev C++

Steps to install

Steps

Steps

Steps

Steps

Simple program in C++

#include<iostream>

using namespace std;
int main() {
  cout << "in the name of allah" << endl;
  cout << "this is my first program in c++";
  cin.get();
}

Output

Output

Conclusion

Thus, the introduction, installation, and simple programming are explained successfully.