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++ program. Header Section The header section is used for Including header files Declaring global variables Declaring functions Defining constants You can divide C++ functions into two categories – Builtin functions … Read more

C++ Private Member Function & Nested Functions

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 function declared inside the class’s private section is known as the “private member function”. A private member function is accessible through the only public member function. Data Members Data members … Read more

C++ File Stream Classes

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 are used for analyzing from the input and writing to the output respectively.  A file is a collection of associated data stored in a particular area on a disk. The … Read more

C++ Virtual Functions

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 recommended that you learn about basics of pointer, classes and derived classes before reading further. What is Virtual Function?  A virtual function is a special type of member function that … Read more

C++ Reference Variable

C++ language allows you to create a new type of variable called reference variable. What Is A Reference Variable ? A variable that store values is called a value variable. The C++ reference variable is an alias for a value variable. It refers to the memory location of the value variable like pointer. Any changes … Read more

C++ String Basics

C++ strings store textual information. The string variable has a sequence of characters enclosed by double quotes. In C++ string basics, we cover following topics. Types of strings How to initialise strings ? How to read input strings ? Types Of Strings A string is a character array terminated by a null (\0)character. The C++ … Read more

C++ Integer Data Type

Data types describe the kind of data so that computer can store or manipulate them appropriately. This is the reason to declare a data type in C++ programming. Data types are also necessary because data items such as numbers are used in expressions. If there is a mismatch, for example – integer and real numbers … 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++ program. Header Section The header section is used for Including header files Declaring global variables Declaring functions Defining constants You can divide C++ functions into two categories – Builtin functions … Read more

Ads Blocker Detected!!!

We have detected that you are using extensions to block ads. Please support us by disabling these ads blocker.

Exit mobile version