C++ Conditional Statements

There come many situations when the programmer has to use C++ Conditional Statements to make decisions or has to execute statements based on some conditions. I this case, the For example, we need to process further only if there is a valid input by the user. This process is called decision making. Decision making structures … Read more

C++ Variables and Data Types

The main feature of the C++ is that you need to define everything before using it. C++ Variables are the names assigned to the memory locations where different type of data is stored. Data types define the type of the data to be stored in the memory locations. The variable are defined in this way … Read more