C tutorial
C Storage Classes
Variables point to a memory location that has an address and a value stored. Other than this value, a variable also has a storage class.… Read More »C Storage Classes
C Data Types
Data types are a very important concept in programming languages. You can choose the right kind of variable types for your program. The data types… Read More »C Data Types
C Variables And Constants
In a C program, some values do not change and some changes with the execution of the program. A constant never changes throughout the program… Read More »C Variables And Constants
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… Read More »C++ Private Member Function & Nested Functions
C++ File Pointer And File Manipulators
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
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… Read More »C++ Virtual Functions
C++ Pointers To Derived Classes
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
C++ Pointers To Objects
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
Preprocessor In C++
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++