Posts by Muskan Agarwal
Author Biographical Info: Not available
In this tutorial, we will see how to interchange the first and last elements in a container list in C++. Here we need to note that the list uses a doubly linked list than the forwa.... Read More
This tutorial will teach how to add hours to current time in C++. What we need to do is to first, get the current time (using inbuilt functions ) and then add the number of hours w.... 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
Here we see how to create a random string in C++ using predefined functions. The solution basically comprises of usage of rand() and srand() functions under <bits/stdc++.h>he.... Read More
Here we see an approach using C++ to get the size of a folder. In this method, we use the string implementation and Windows API functions. The important two concepts are recursion .... Read More
In this tutorial, we will learn how to convert a given image (RGB) to Grayscale using OpenCV in C++. We access an image existing already on our machine and then convert it to a gra.... Read More
In this program, we will add a given number of days to the given date in C++. Here we will display the date after adding the days as given in input. We have different cases for add.... Read More