C++ Syntax Question: Download Basic C++ Syntax PDF

How to demonstrate the use of a variable?

Tweet Share WhatsApp

Answer:

Here is a sample program demonstrating the use of a variable:

#include <iostream>

using namespace std;

int main()
{
int thisisanumber;

cout<<"Please enter a number: ";
cin>> thisisanumber;
cin.ignore();
cout<<"You entered: "<< thisisanumber <<"n";
cin.get();
}</iostream>

Download Basic C++ Syntax PDF Read All 27 Basic C++ Syntax Questions
Previous QuestionNext Question
How to Declaring Variables in C++?What relational operators if statements in C++?