Q. What will be the output of the following C++ code?
Code:
#include<iostream>
using namespace std;
int main ()
{
int cin;
cin >> cin;
cout << "cin: " << cin;
return 0;
}
β
Correct Answer: (C)
cin: garbage value