Example:
#include <iostream>
using namespace std;
int main() {
Cout<<"Hello word !";
return 0;
}
Output
Hello word !
cin : இதன் மூலம் பயனரிடம் விசைப்பலகை பெறுகிறது.
Example:
#include <iostream>
using namespace std;
int main() {
int num;
cout<<"Enter any number:";
cin>>num; // accept one value form keyboard
cout<<"Number is: "<<num;
return 0;
}
Output
Enter any number :100 Number is: 100
No comments:
Post a Comment