Skip to content

Programtopia

  • Home
  • C Programming
  • C++ Programming
  • C# Programming
  • C Examples

Recursion in C++ Programming

The process of calling a function by itself is called recursion. Recursion is frequently used…
Read More

Storage Classes in C++ Programming

Storage class of a variable defines the lifetime and visibility of a variable. Lifetime means…
Read More

Namespaces in C++ Programming

Namespace is used to define a scope where identifiers like variables, functions, classes, etc are…
Read More

this pointer in C++ Programming

In C++, this pointer is used to represent the address of an object inside a…
Read More

Arrays in C++ Programming

Array is a collection of data of same types stored in sequential memory location. It…
Read More

Functions in C++ Programming

Function is a logically grouped set of statements that perform a specific task. For example,…
Read More

Templates in C++ programming

Templates allow programmer to create a common class or function that can be used for…
Read More

Operator overloading in C++ programming

In C++, operators like ‘+’, ‘-‘ have specified functions for native data-types. For example, division…
Read More

Variables in C++

Variables are the name to memory space in the computer where we can store data…
Read More

Multilevel Inheritance in C++ Programming

Inheritance is the process of inheriting properties of objects of one class by objects of…
Read More

Nested loops in C++ Programming

A loop inside another loop is called a nested loop. The number of loops depend…
Read More

Exception Handling in C++ Programming

Exceptions are runtime anomalies that a program encounters during execution. It is a situation where…
Read More

Structure and Sections of a C++ Program

A C++ program can structurally be divided into different sections. Most sections are present by…
Read More

for loop in C++ Programming

In C++ programming, loop is a process of repeating a group of statements until a…
Read More

do-while loop in C++ Programming

In C++ programming, loop is a process of repeating a group of statements until a…
Read More

switch…case statement in C++ Programming

The switch…case statement is a multiple branching statement where the control is transferred to one…
Read More

while loop in C++ Programming

In every programming language including C++, loop is a process of repeating a group of…
Read More

if statements in C++ Programming

While writing computer programs, we need to check certain condition to instruct the program to…
Read More

Hierarchical Inheritance in C++ Programming

Inheritance is the process of inheriting properties of objects of one class by objects of…
Read More

Inline function in C++ Programming

Inline function is a function which when invoked requests the compiler to replace the calling…
Read More

Multiple Inheritance in C++ Programming

Inheritance is the process of inheriting properties of objects of one class by objects of…
Read More

Inheritance in C++ Programming

Biologically, Inheritance is a term which means acquiring characters of parents by their offspring. Children…
Read More

Single Inheritance in C++ Programming

Inheritance is the process of inheriting properties of objects of one class by objects of…
Read More

Function Overloading in C++ Programming

If more than one functions having same name but differing in terms of number and…
Read More
© 2025, Programtopia