Answers

Question and Answer:

  Home  Basic C++ Syntax

⟩ How to demonstrate the use of a variable?

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();

}

 280 views

More Questions for you: