Int num ; cin>>num what it means in c++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 5

Int num ; cin>>num what it means in c++

25th Sep 2017, 8:26 PM
Gaurav kumar
Gaurav kumar - avatar
3 Answers
+ 1
int num; initialize "num" as a variable(integer data type) cin>>num; accept user input and assign it to the newly created "num" variable.
27th Sep 2017, 12:25 AM
Jeff Shipton
Jeff Shipton - avatar
+ 15
In the world of development, generally, people are happy to help others learn new things, but it's important for each of us to learn the balance between when to ask questions and when not to. We all know that the C++ tutorial covers the topic you're asking about pretty early on in the tutorial. It's important to try to do as much research on your own to find these answers before asking for help. It helps you learn the skill more thoroughly and helps members of the community not to have their time wasted on something that we all know you can figure out on your own. I'm not bashing you for asking this question. We all have questions that need answering, but I'm just saying you should find the balance between when you've spent enough time trying on your own and should ask someone, and when you should probably put more effort into your research and practice.
25th Sep 2017, 10:56 PM
Shane Overby
Shane Overby - avatar
+ 5
Did you go through the C++ tutorial ?
25th Sep 2017, 9:43 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar