Ad Home

Magazine

Random Posts

Videos

Recent Posts

Culture

Popular Posts

Saturday, 23 September 2017

What Is Class In C++.?


A class in C++ is a user defined type or data structure declared with keyword class that has data and functions (also called methods) as its members whose access is governed by the three access specifiers private, protected or public (by default access to members of a class is privat...

Tuesday, 22 August 2017

Monday, 21 August 2017

What Is Relational Operators...?


Relational Operators There are following relational operators supported by C++ language Assume variable A holds 10 and variable B holds 20, then: Show Examples OperatorDescriptionExample ==Checks if the values of two operands are equal or not, if yes then condition becomes true.(A == B) is not true. !=Checks if the values of two operands are equal or not, if values are not equal then condition...

What is Arithmetic Operators


There are following arithmetic operators supported by C++ language: Assume variable A holds 10 and variable B holds 20, then: Show Examples OperatorDescriptionExample +Adds two operandsA + B will give 30 -Subtracts second operand from the firstA - B will give -10 *Multiplies both operandsA * B will give 200 /Divides numerator by de-numeratorB / A will give 2 %Modulus Operator and remainder...

What is Operators..


An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations. C++ is rich in built-in operators and provides the following types of operators: Arithmetic Operators Relational Operators Logical Operators Bitwise Operators Assignment Operators Misc Operators This chapter will examine the arithmetic, relational, logical, bitwise, assignment...