Tutorials

C++ Expressions

C++ Expressions are the combination of one or more operands and operators that are involved in the computation. Every expression […]

Tutorials

C++ Operators

You declare a variable after that operators are used to perform logical or mathematical operations on that variable’s values. For

Tutorials

C++ Constants

C++ constants are fixed values that can not be altered at any stage of the program. Const literal is used

Tutorials

C++ Variables

C++ Variables are the names given to memory locations. It is used to store any data type value. We can

C++ Keywords
Tutorials

C++ Keywords

C ++ keywords words are also called reserve words. The meaning of these words is already defined by the compiler.

C++ Identifiers
Tutorials

C++ Identifiers

C++ identifiers are the unique names assigned by the programmer to the variables, constants, functions or classes, etc. For example

Scroll to Top