Posts from C++

Queries on the Left and Right Circular Shift on Array in C++

By Pranav Prakasan

This article discusses the method to perform left and right-shift on C++ arrays. Thereby, answer queries on the left and right circular shift on array in C++. The motive of the pro.... Read More

Reorder an Array according to given Indexes using C++

By Abhay Shah

The following tutorial demonstrates how we can reorder an array according to given indexes using C++. The program attempts to take a random order of indexes and arrange them chrono.... Read More

C++ program for Array Representation Of Binary Heap

By Amit Raja Kalidindi

In this tutorial, we are going to learn how to represent a Binary Heap using an array in C++. In a Binary Tree, if all the levels are completely filled excluding the last level and.... Read More

Tokenizing a string in C++

By Amit Raja Kalidindi

In this tutorial, we are going to learn how to tokenize a string in C++. The process of splitting a string into tokens with respect to a given delimiter is known as tokenizing. Exa.... Read More

Data Abstraction in C++

By Amit Raja Kalidindi

In this tutorial, we are going to learn about Data Abstraction in C++. Data Abstraction is the process of showing only the functionality of an object by hiding its implementation d.... Read More

C++ Program to replace a word with asterisks in a sentence

By Vishal Patil

Hello everyone, in this tutorial, we will write a C++ program to replace a word with asterisks in a sentence. Below is the given C++ code that will replace the specific word with a.... Read More

How to include graphics.h in CodeBlocks

By Mainak Halder

Hello Learners, Today We are going to discuss how to include graphics.h in code blocks.It is basically used when programmers try to run some animations. Include graphics.h in CodeB.... Read More

cfloat header in C++ with examples

By Mainak Halder

Hello Students, today we are going to learn about cfloat header file in C++. cfloat header file present  in C++ <cfloat.h> file is a platform-dependent and has the capabilit.... Read More