What is cin | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What is cin

please help

13th Jun 2017, 5:29 PM
Sarbajit Roy
Sarbajit Roy - avatar
4 Answers
+ 7
cin is use for getting something from the user .... eg. int no ; cout<<enter your number ; cin>>no; cout<<no;
13th Jun 2017, 6:04 PM
#Happy@777
#Happy@777 - avatar
+ 3
cin help us to input anything from user which we require in our program
28th Jun 2017, 6:26 AM
Srishti Aggarwal
Srishti Aggarwal - avatar
+ 2
cin is for character input or some might say console input.It takes an input from user and later could store it in a variable or print the input using cout. #include<iostream> using namespace std; int main(){ int user_input_variable; cout<< "Enter input"<<endl; cin>> user_input_variable; cout<< "You entered "<< user_input_variable<< endl; return 0; } Example.. Enter input 5 You entered 5
13th Jun 2017, 5:42 PM
Asif
Asif - avatar
+ 1
cin is a predefined function used for reading values in a program .cin is in iostream header file
23rd Jan 2018, 4:18 PM
Gudla Swathi
Gudla Swathi - avatar