cin is the object of istream class i.e, input class.
Chat with our AI personalities
cin and cout are iostream objects, not keywords.
The cin and cout objects are iostream objects somewhat equivalent to stdin and stdout. The equivalent of printf ("Hello World\n"); is cout << "Hello World" << endl; The equivalent of scanf ("%d", &i); is cin >> i;
scanf is a function (available in C and C++)cin is an istream object (C++ only)Advice: when in doubt, use fgets+sscanf
#include <iostream> using namespace std; int main() { int a, b; cin >> a; cin >> b; a = a * b; b = a / b; a = a / b; cout << a << " " << b; char wait; cin >> wait; return 0; }
cin is an object........ An Example is // By Codex #include <iostream> using namespace std; int main(){ int age; cout << "How Old Are You?\n"; cin >> age; cout << "You are << age << years old\n"; system("pause") return 0; }