Posts by Vishal Patil
Author Biographical Info: Not available
In this tutorial, we will learn about set::emplace() function available in C++. set::emplace() We will cover these: Basic function of set::emplace(). Syntax Few examples Actual imp.... Read More
Hello everyone, in this tutorial, we will learn about the atol() , atoll() and atof() functions available in C++. atol() function atol() function is used to convert string value in.... Read More
Hello everyone, in this tutorial, we will write a C++ program to replace a word with asterisks in a sentence. Below is the given C++ code that will replace the specific word with a.... Read More
Hello everyone, in this tutorial, we will learn about the nested ternary operator in C++. It is called a ternary operator because it uses three operands for its operation. It is al.... Read More
Hello everyone, in this tutorial, we will learn about the get_temporary_buffer in C++. std::get_temporary_buffer Generally, buffer refers to a block of computer memory that serves .... Read More
Hello everyone, In this tutorial, we will learn about calling the virtual function from the constructor or the destructor of the class in C++. Before moving to this topic you shoul.... Read More
In this tutorial, we will learn about the visibilities mode in C++. The visibility modes come in a picture when there is the inheritance of the classes (learn Inheritance in C++). .... Read More
In this tutorial, we are going to learn about the matrix inversion. Definition Assuming that there is non-singular ( i.e. determinant(A) is not equal to zero) square matrix A, then.... Read More