C++ Tutorial

 C++ Tutorial

C++ language is a superset of the C language. C++ was first designed as an extension of C language. Thus in addition to the procedural language features derived from C, C++ also supports object-oriented programming features like inheritance, polymorphism, abstraction, encapsulation, etc

What is C++🤷‍♂️

C++ is an object-oriented programming (OOP) language that is viewed by many as the best language for creating large-scale applications. C++ is a superset of the C language. A related programming language, Java, is based on C++ but optimized for the distribution of program objects in a network such as the Internet.

C++ is a general purpose, case-sensitive, free-form programming language that supports object-oriented, procedural and generic programming. C++ is a middle-level language, as it encapsulates both high and low level language features.

C++ supports the object-oriented programming, the four major pillar of object-oriented programming (OOPs) used in C++ are:

  • Inheritance
  • Polymorphism
  • Encapsulation
  • Abstraction             



  •                                                                        
                                                                          Uses of C++
  •      Operating Syste
  •       Embedded System
  •       Games
  •       Web Browser
  •       GUI Based Application
  •       Compilers
  •       Database management
  •       Medical Technology
  •       AR/VR
  •       etc                                                     
  •                                                               
                                                                   
                                                                 C++ first Program😋
  • #include<iostream>
  • using namespace std;
  • int main(){
  • cout<<"Hello World"
  • return 0;
  • }
  •                                                              Output
                                            
    Hello World                    
                                            

    Comments

    Popular posts from this blog

    My Social Media Account