In this tutorial, we will learn how to use unique_ptr in C++. We will learn about the unique_ptr in C++, what exactly it is and with an example. The unique_ptr is one of the smart .... Read More
In this tutorial, we will learn about the naming conventions in C++. Before proceeding to the naming conventions of C++, let us understand the definition of a convention. The conve.... Read More
In this tutorial, we will learn about the C++ goto statement and its usage in detail. Before proceeding to its implementation, let us understand the key characteristics of the goto.... Read More
In this tutorial, we will learn about the C++ time() function with example. In C++, the standard library does not provide any particular data type for date and time. It generally i.... Read More
In this tutorial, we will learn about how to find the most frequent word in a string in C++. So, continue through the article. Introduction The string is a collection of words that.... Read More
In this article, we will learn about how to iterate through a string word by word in C++. So, continue reading through the article…… Simple approach There will be a num.... Read More
Hello everyone, in this post we will learn about std::fill() and std::fill_n() functions in C++. These functions are used with vectors to fill values. Let’s discuss more on t.... Read More
In this tutorial, we will learn about the basic input/output in C++. There are many inbuilt libraries to perform input and output operations in C++. In the input operation, we read.... Read More