Examveda

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

A. cin: garbage value

B. Error

C. Segmentation fault

D. Nothing is printed

Answer: Option A


Join The Discussion

Related Questions on Introduction to C plus plus