Intro To C++/Playing with '''''operator'''''

From Wikibooks, open books for an open world
Jump to navigation Jump to search
Intro To C++
Variables Playing with '''''operator''''' Making statement

Basic Math[edit | edit source]

C++ can be used to do basic math. The operators used in the basic math are listed in the table below.

Operator Operation
Arithmetic Operator addition
Substraction
Multiplication
Division
Modulus
Increment
Decrement
Assignment Operator "" is equivalent to ""
"" is equivalent to ""
"" is equivalent to ""
"" is equivalent to ""
"" is equivalent to ""
"" is equivalent to ""
Comparison Operator Equality
Inequality
Greater than
Less than
Greater than or equal to
Less than or equal to
Logical Operator Logical AND
Logical OR
Logical NOT

Basic math operators in C++ have some distinguishing features:

  • Bulleted list item
  • Bulleted list item
  • Bulleted list item

Part of Basic math operation is demonstrated in the C++ program below:

Checking Size[edit | edit source]

The memory size of any variable can be discovered using the C++ sizeof operation.The sizeof operator syntax is look like this:

sizeof(var)

The sizeof operator is demonstrated in the program as follows:

Casting Data Types[edit | edit source]

Any data-types except "string" could be converted to another data type through "casting". Casting syntax in C++ looks like this:

variable-name=static-cast <data-type> variable-name

Casting with C++ form is demonstrated in the program as follows:

Further reading[edit | edit source]