top of page

C++ Tutorial – Learn C++ Programming with examples

BY The Ultimate Tech| FILED UNDER: LEARN C++

C++ language is a direct descendant of C programming language with additional features such as type checking, object oriented programming, exception handling etc. You can call it a “better C”. It was developed by Bjarne Stroustrup.
C++ is a general purpose language language, when I say general purpose it simply means that it is designed to be used for developing applications in a wide variety of domains.

 

C++ Tutorial

 

To learn C++ programming, refer these tutorials in the given order. These tutorials are written for beginners so even if you have no prior knowledge in C++, you won’t face any difficulty understanding these tutorials.

 

Basics

  1. First C++ Program – Hello World!

  2. Variables and their types 

  3.  Data types

  4.  Operators in C++   

 

Control Statements

 

  1. If, if..else-if statement

  2. Switch Case in C++6.

  3. For loop7. 

  4. while loop8. 

  5. do while loop9. 

  6. Continue statement10. 

  7. Break statement11. 

  8. 12. goto statement

 

Functions

 

  1. Functions in C++13. 

  2. Default arguments in Functions14. 

  3. 15. C++ Recursion

 

Arrays

  1. Arrays16. 

  2. Multidimensional arrays17. 

  3. Passing Array to function18. 

  4. 19. C++ Strings

Pointers

20. Pointers in C++
21. this Pointer

 

OOPs


  1. OOPs Concepts22. 


  2. Constructor23. 


  3. Destructor24. 


  4. Structure25. 


  5. How to pass and return struct from function26. 


  6. Enumeration27. 


  7. Inheritance28. 


  8. Polymorphism29. 


  9. Function Overloading30. 


  10. Function Overriding31. 


  11. Virtual Function: Run time Polymorphism32. 


  12. Encapsulation33. 


  13. Abstraction34. 


  14. Interfaces – Abstract class35. 


  15. Pass and return object from function36. 

  16. 37. Friend class and friend Function

 

Features of C++

1) Better memory management – you can dynamically allocate memory during runtime using new and delete operator in C++ to have better memory management.

2) Object oriented – C++ supports object oriented programming features, which means we can use the popular OOPs concepts such as Abstraction, Inheritance, Encapsulation and Inheritance in C++ programs, these features make writing code in C++ a lot easier. We will cover them in detail in this tutorial series.

3) Portable – Most of C++ compilers supports ANSI standards that makes C++ portable because the code you write on one operating system can be run on other Operating system without making any change. We cannot say C++ a fully platform independent language as certain things in C++ are not portable, such as drawing graphics on a screen, since standard C++ has no graphics or GUI API.

4) Structured programming language – We have functions in C++, which makes easier to break a problem into small blocks of code and structure the program in such a way so that it improves readability and reusability.

5) Exception handling: Just like Java we can do exception handling in C++ which makes it easier to identify and handle the exceptions.

 

6) Simple – Last but not least, just like C, it is easier to write a program in C++. Once you get familiar with the syntax of C++ programming language, it becomes a lot easier to code in C++

bottom of page