What will be the output of the following code?
#include<iostream>
using namespace std;
int main ()
{
int cin;
cin >> cin;
cout << "cin" << cin;
return 0;
}
error in using cin keyword
cin+junk value
cin+input
Runtime error
This question is part of this quiz :
C++ Variables and Data Types