What is ASCII value? ASCII stands for American Standard Code for Information Interchange. A character or special character holds ASCII value rather than the character itself. The Continue Reading
C++ Tutorials
Generating Multiplication Tables in C++ In this tutorial, we will show you how to generate multiplication tables in C++. A user is asked to enter the number Continue Reading
What is a leap year? A leap year contains an additional day than other years. The day is added to the month of February i.e. normally Feb Continue Reading
Check if a number is even or odd in C++ Program In this short tutorial series of C++, we will show you how to check whether a Continue Reading
How to get exponent value in C++? In C++, you may use the built-in function pow() or write your own logic to get the exponent value. In Continue Reading
The sin function in C++ sin() is the built-in function in C++ This function is defined in the <cmath> library – you have to include this in Continue Reading
How to get Quotient and Remainder using C++ In this part of the short tutorial series, we are going to show you how to get the quotient Continue Reading
Reverse a string in C++ You may use different ways for reversing a string in C++. This includes built-in functions that you may use quite easily and Continue Reading
What is stoi() function in C++? The stoi function: The stoi() is the abbreviation of “string to an integer”. As the full name suggests, stoi() is used Continue Reading
How to split string in C++? In this tutorial, we will show you ways of splitting a string by comma and space in C++. There are different Continue Reading
What is find() function in C++? The find() function can be used in C++ programs by including <algorithm.h> in the header. The find function is used to Continue Reading
What is C++ Double data type? The double is among one of the available data types in C++ like float, int, char etc. Double data type allows Continue Reading
Declaring and displaying char type variables in C++ [crayon-641fcb12824c5240676730/] Output: C++ char data type in short The char is a data type in C++ It is used Continue Reading
How cout is written in the C++ program cout << “text to display”; cout << variable_name; What is C++ cout? The cout in C++: The out in Continue Reading
What is C++ OR operator OR is a logical operator in C++ The OR is denoted by || (two pipe signs) The OR is used to evaluate Continue Reading