To convert an expression of a given type into another is known as type-casting. There are basically two types of type conversion: Implicit Type Conversion Explicit Type Conversion Casting operators comes under Explicit type conversion, in order to control the types of conversion between C++...
Navneet Kumar
What are the best C++ books
C++ (pronounced as see plus plus) was developed by Bjarne Stroustrup as an extension to the C language in year 1979. It had undergone minor update released in 2003 (called C++03) and three major updates to the programming language (C++11, C++14 and C++17, ratified in...
How to convert int to string in C++
There are three ways possible to convert an integer to string in c++ Using std::to_string function The string function converts numerical int value to string. It takes integer value as argument and returns a string object containing the representation of numerical value as a sequence...
Compiling and Linking C++ Program
When you write a C++ program, the very next step is to compile the program to generate an executable file. This process of generating executable file from a source code involves 3 main stages. Preprocessor The preprocessor modifies the original source code according to the...