Posts from C++

Move last element to front of a Linked-List in C++

By Manisha Rathore

In this tutorial, we will learn to move last element to front of a linked-list in C++. For Example: If the given linked list is 1->2->3->4->5 Then, the output is 5->.... Read More

How to Find the ceiling in a sorted array in C++

By Manisha Rathore

In this tutorial, we will find the ceiling in a sorted array in C++. Here, we will have an array and a number y and we have to get ceiling of the number. Moreover, the ceiling of y.... Read More

How to solve the staircase problem in C++

By Barshan Paul

So what is the staircase problem? This is a pretty interesting one. let’s start learning how to solve the staircase problem in C++. Suppose you are standing at the bottom of .... Read More

Pointers and references in C++

By Yashas

In this tutorial, we will learn about pointers and references in C++. Pointers are one of the powerful features of C++. Pointers are used to access and manipulate addresses. Everyt.... Read More

Singly Linked Lists in C++

By Yashas

In this tutorial, we will learn everything about Singly Linked Lists in C++. We will learn the following – What are Singly Linked lists? How are they created? Different opera.... Read More

Doubly Linked Lists in C++

By Yashas

In this tutorial, we will learn about Doubly Linked Lists in C++. We will learn the following – What are Doubly Linked Lists(DLL)? Advantages and disadvantages of DLL of Sing.... Read More

Read data from JSON file in C++

By Animisha Dalal

In this tutorial, we will learn how to read a JSON file in C++. Firstly, what is a JSON file? JSON is short for JavaScript Object Notation. A JSON file stores data structures and o.... Read More

How to merge two arrays in C++

By Barshan Paul

In this problem, we will learn how to merge two arrays in C++ programming. You have to ask the user to enter the array 1 size and elements then size of the second array and element.... Read More

Related Posts