Introduction to Object Oriented Programming in C++ moazkhanThu, 07/24/2014 - 07:08Introduction to Object Oriented Programming in C++
In this part you will learn:
1. Why using Object Oriented programming approach?
2. What are Classes
3. Why we use classes
4. What are Access specifiers
5. Basic C++ syntax
Why we use Object Oriented programming approach?
We use object oriented programming in C++ because the procedural language( language containing all the functions and variables within the main of the program) cannot cope with very large projects like when we have to use several hundred of functions within one program.