Posts from C++

Create a Doubly Linked List from a Ternary Tree in C++

By Dinesh Kumar

In this tutorial, we are going to learn how to create a doubly linked list from a ternary tree in C++. Here we will learn about the ternary tree, doubly linked list, and how to cre.... Read More

Nested Ternary Operator in C++

By Vishal Patil

Hello everyone, in this tutorial, we will learn about the nested ternary operator in C++. It is called a ternary operator because it uses three operands for its operation. It is al.... Read More

How to use is_empty template in C ++?

By Gorakh Chavan

In this post, we are going to learn about a standard built-in function std::is_empty function in C++.  is_empty is a Template from STL(Standard Template Library). This type checks.... Read More

Compiler Error C2065 in C++ with Solutions

By Karun Thannickal

In this tutorial, we will learn about the compiler error C2065 in C++. We look at possible reasons for this error and their corresponding solutions. The error message displayed for.... Read More

CamelCase pattern matching in C++

By Pratik Tayade

In this tutorial, we are going to discuss the CamelCase pattern matching in C++. Before moving towards CamelCase programming, first, we need to understand what is CamelCase? CamelC.... Read More

std::get_temporary_buffer in C++

By Vishal Patil

Hello everyone, in this tutorial, we will learn about the get_temporary_buffer in C++. std::get_temporary_buffer Generally, buffer refers to a block of computer memory that serves .... Read More

C++ Program to find if the strings can be chained to form a circle

By Nishant Saxena

So, we’ll discuss how an array/vector of strings in C++ can be chained together to form a circle or loop. So to start with it lets first understand the topic. Chain of String.... Read More

C++ program to find pair with greatest product in array

By Amit Raja Kalidindi

In this tutorial, we are going to learn how to find a pair with the greatest product in an array in C++. Naive Solution: The simple solution is to consider all the possible pairs a.... Read More