Posts from C++

Different Types of Constants in C++

By Animisha Dalal

In this tutorial, we will learn what are the different types of constants in C++. First let’s see, what is a constant. As the word signifies, a constant is a value that can n.... Read More

Send GET and POST requests in C++

By Muskan Agarwal

In this tutorial, we will see how to send GET and POST requests in C++. The usage of these requests majorly in the field of www and it uses various protocols. GET method in C++ HTT.... Read More

static_cast and dynamic_cast in C++

By Adrika Roy

In this tutorial, we will learn about static_cast and dynamic_cast in C++. We know that, in C++, we can assign one variable to another of the same type. But what happens if the dat.... Read More

Split a Sentence into words in C++

By Astha Awasthi

In this post, we are going to discuss how to split a sentence into words in C++. Splitting a sentence into words is useful when we need to perform operations on some or all words o.... Read More

How to copy elements of one array to another in C++

By Barshan Paul

This is a very simple and easy to understand topic where we will learn how to copy elements of one array to another in C++. We all know about arrays. Those who don’t know abo.... Read More

How to find the Angle between the hour hand and minute hand in C++

By Manisha Rathore

In this tutorial, we will learn to get or find the angle between the hour hand and minute hand in C++. Also, we say this problem as analog clock angle problem where we have to find.... Read More

Block swap algorithm for rotation of the array

By Manisha Rathore

In this tutorial, we will learn about the block-swap algorithm for rotation of the array in C++. Also, we will have an array and we have to rotate the array by s elements. For Exam.... Read More

How To Add Elements In An Array In C++

By Kayon Karmokar

Here in this tutorial, we will learn about how to enter or add elements in an array in C++. I am using Turbo C++ version 2.2 to execute the same. Array is a collection of data in a.... Read More

Related Posts