Sunday 15 September 2013

Input & Output in C++

#include<iostream>
using namespace std;

void main()
{
 int input;
 cout<<"enter a number :";
 cin>>input;
 cout<<"input is = "<< input<<endl;
 system("pause");
  
}

0 comments:

Post a Comment