Loops in c

Loops in C++ Loops in C: A type of control structure that repeats statements or set of statements is known as a looping structure. It is also known as iterative…

0 Comments

If else Statement C++

If else Statement C++ Control Structure A statement used to control the flow of execution in a program is called a control structure. The instructions in a program can be…

0 Comments

Operator

Operator The operator is a symbol that is used to perform certain operations on data. C++ provides a variety of operators. These include arithmetic operators, a relational operator, a logical…

0 Comments

C++ Data Types

C++ Data Types The C++ data types define a set of values and a set of operations on those values. The computer manipulates various types of data. The program is…

0 Comments

C++ Define Directive

C++ Define Directive Define directive is also used to define a constant. The difference between the const qualifier define directive is that the directive does not specify the data type of…

0 Comments

C++ Constants

C++ Constants C++ constants is a quantity that cannot be changed during program execution. Following are two types of constants in C++: Literal constant Symbolic constant 1) Literal constant A…

0 Comments