
Variable declaration means to tell the C++ compiler about variable name and its data type.
The syntax of variable declaration in C++ is as follows:
General Syntax of Variable DeclarationDataType List-of-Variables-separated-by-commas;
Examples of variable declarationint...