What is CPP? A Beginner's Guide
C++ is a powerful and versatile programming language that is widely used in various domains, including software development, game development, system programming, and more. It is an extension of the C programming language and incorporates object-oriented programming (OOP) features, making it both low-level and high-level, depending on how you use it.
What is Object Oriented Programming (OOP)
C++ introduce the magic of object-oriented programming, which helps organize your code by treating everything as an "object". For now just keep in mind objects are something which contains data and functions, and Classes and Objects are the main aspect of Object-Oriented Programming. The main difference between C and CPP is object-oriented programming.My First Program
You can use any IDE to start your journey of Learning CPP, I recommend "DevCPP" but you can use any of your choice like VsCode, Codeblocks and any other, but remember to install all the required extensions if you choose VsCode or any other like it.
- Open your IDE and Write this on your own.
#include<iostream>
using namespace std;
int main()
{
cout<<"THIS IS MY FIRST PROGRAM :)";
}
Congratulations you write your First CPP Program
Stay Tunned for next Post :)


0 Comments