C++ Tutorial – How to Get User Input

How to Get User Input in C++

In this C++ Tutorial, i want to show you How to Get User Input, so in the previous articles we have  simply printed simple values on screen using standard libraries.  but the standard library provides many additional ways to interact with the user via its input/output features. basically in this article we are going to … Read more C++ Tutorial – How to Get User Input

C++ Tutorial – Create Variables & Data Types

C++ Data Types And Variables

This is the second Tutorial in C++, in this C++ Tutorial we are going to Create Variables & Data Types. so Variables are used to store data in memory location, which we will use from that variable in our program. for example when I write int number=5; here variable name is number which is associated with … Read more C++ Tutorial – Create Variables & Data Types