Encapsulation
Object oriented programming is a new way of approaching the job of programming. Object oriented...
Read MorePosted by M. Saqib | Updated Jun 29, 2021 | C++ Programming Tutorials |
Object oriented programming is a new way of approaching the job of programming. Object oriented...
Read MorePosted by M. Saqib | Updated Oct 10, 2008 | C++ Programming Tutorials |
Functions are the building blocks of any programming language. A Function is a self contained block of code with a specific purpose. It has a name that is used to identify and call it for execution. The function name is global,...
Read MorePosted by M. Saqib | Updated Feb 5, 2022 | C Programming Tutorials |
This article is about file handling using C programming language. File stores information for many purposes and retrieve whenever required by our C programs. A file represents a sequence of bytes on the disk where a group of related data is stored. File is created for permanent storage of data. C programming language can handle files as Stream-oriented data (Text) files and System oriented data (Binary) files.
Read MorePosted by M. Saqib | Updated Oct 14, 2020 | C++ Programming Tutorials |
Once again we are into a completely new topic with terminology which will be new to you. If you are new to object oriented programming, you should follow along in this tutorial very carefully because every attempt has been made...
Read MorePosted by M. Saqib | Updated Oct 14, 2020 | Object Oriented Programming |
Any program which uses these five methodologies or any of it, we can call that program object oriented. They are Encapsulation, Data Hiding, Overloading, Polymorphism, Inheritance. Any programming language which supports all of these features and facilitate the programmer in developing the program in these methodologies is called Object Oriented Programming Language i.e. C++, Java, C#.
Read MorePosted by M. Saqib | Updated Sep 25, 2008 | C++ Programming Tutorials |
Posted by M. Saqib | Updated Jun 5, 2021 | C++ Programming Tutorials |
Container classes are the solution to a specific kind of code reuse problem. They are building blocks used to create object-oriented programs. They make the internals of a program much easier to construct. A container class describes an object that holds other objects. Container classes are so important that they were considered fundamental to early object-oriented languages
Read MorePosted by M. Saqib | Updated May 18, 2021 | C++ Programming Tutorials |