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
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
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
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
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
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
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
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