C++ Program Structure
C++ is a very popular programming language. Every C++ program has a general structure that it must follow. Here is common structure of a C++… Read More »C++ Program Structure
C++ is a very popular programming language. Every C++ program has a general structure that it must follow. Here is common structure of a C++… Read More »C++ Program Structure
You have learnt about member functions earlier. We now expand the idea and talk about private member function and nesting of function in C++. A… Read More »C++ Private Member Function & Nested Functions
An object can be passed to a function just like we pass a structure to a function. we can pass the object of another class… Read More »C++ Objects As Function Arguments
What is a file pointer? A pointer is used to handle and keep track of the files being accessed. Every file maintains two pointers called… Read More »C++ File Pointer And File Manipulators
File streams are the libraries which are utilized in programming. These use the iostream preferred standard library because it offers cin and cout strategies which… Read More »C++ File Stream Classes
In this article, you are going to learn about an important concept in C++ called the virtual functions and pure virtual functions. However, it is… Read More »C++ Virtual Functions
We know that pointers are used for an object of derived classes, we can also use them for the base objects. The pointer to the… Read More »C++ Pointers To Derived Classes
To understand the topic of pointers to objects, we need to know what is an object , pointer and class. A class is defined in… Read More »C++ Pointers To Objects
Understanding c preprocessor includes the source code which is written by programmers is stored in the file “program.c”. The file that is stored then processed… Read More »Preprocessor In C++
C++ language allows you to create a new type of variable called reference variable. What Is A Reference Variable ? A variable that store values… Read More »C++ Reference Variable