#include<iostream>
using namespace std;
void main()
{
int input;
cout<<"enter a number :";
cin>>input;
cout<<"input is = "<< input<<endl;
system("pause");
}
|
#include<iostream>
using namespace std;
void main()
{
int input;
cout<<"enter a number :";
cin>>input;
cout<<"input is = "<< input<<endl;
system("pause");
}
|
#include<iostream>
using namespace std;
void main()
{
cout<<"hello world\n";
system("pause");
}
|
#include<stdio.h>
#include<stdlib.h>
void main()
{
printf("Hello World!\n");
system("pause");
}
|