C++ Programming Tutorial. | C ++ प्रोग्रामिंग ट्यूटोरियल।





















C++ Programming Tutorial




C++ Tutorial


C++ programming language tutorial is designed for beginners and professionals.

What is C++ programming language?

  1. c++ support object-oriented programming procedural, functional, etc.

  2. It supports procedural and generic programming.

  3. It is a case-sensitive programming language.

  4. It is a general-purpose programming language.

  5. It can be used to develop operating systems, browsers, games and etc.








Object-Oriented Programming (OOPs)

C++ supports object-oriented programming. they are.


  1. Class and Objects.

  2. Abstraction.

  3. Encapsulation.

  4. Inheritance.

  5. Polymorphism.


Usage of C++


  1. Application Software Development.

  2. Programming Languages Development.

  3. Computation Programming.

  4. Games Development.

  5. Embedded System.

  6. Window application.

  7. Client-Server application.

  8. Device drivers and etc.



C++ Program

File: ex.cpp

#include using namespace std; int main() { cout<<"welcome to C++ Programming"; return 0; }

output:

welcome to C++ Programming