C++ if Statement

An if statement consists of a Boolean expression followed by one or more statements. If the Boolean expression is true, the block of code inside the if statement will be executed else not. This is most simple of all the decision making …

Read moreC++ if Statement

C++ Arithmetic Operators

Arithmetic Operators the symbols that are used to perform mathematical operations on operands such as addition, subtraction, multiplication, division etc. operator description + additionadds two operands. eg, a+b. – subtractionsubtracts two operands. eg, a-b. * multiplicationmultiplies two operands. eg, a*b. …

Read moreC++ Arithmetic Operators