Software development is the fascinating process behind the applications and programs that run our world! It encompasses everything from initial conception to final product

Storage Classes in C++

November 5, 2017|

The storage class is used to specify control two different properties: storage life-time and scope(visibility) of variables. Following storage classes can be used in a C++ Program: Automatic External Static Register Automatic(auto) Storage Class Variable defined within the function body are called auto variable. The auto storage class is used to declare [...]

Operator in C++

November 4, 2017|

C++ operator is a symbol that is used to perform mathematical or logical manipulations. C++ language is rich with built-in operators. Arithmetic Operators Operator Description + Addition – Subtraction * Multiplication / Division % Modulus Increment and Decrement Operators Operator Description ++ Increment −− Decrement Relational Operators Operator Description == [...]

Go to Top