Search
 
SCRIPT & CODE EXAMPLE
 

CPP

basic symbol meanings in c++

Value * Value			Multiplication

Value / Value			Division

Value + Value			Addition

Value - Value			Subtraction

Value % Value			Modulus

Value < Value			Less than (comparison)
	
Value <= Value			Less than or equal (comparison)

Value > Value			Greater than (comparison)

Value >= Value			Greater than or equal (comparison)

Value == Value			Equal (comparison)	

Value != Value			Not equal (comparison)	

Value && Value          Logical AND

Value || Value          Logical OR

Value << Value			Bitwise shift left

Value >> Value			Bitwise shift right

Value & Value			Bitwise AND

Value ^ Value			Bitwise XOR (exclusive OR)

Value | Value			Bitwise OR
Comment

PREVIOUS NEXT
Code Example
Cpp :: map of vector of struct error 
Cpp :: insert at position in vector c++ 
Cpp :: ue4 find component c++ 
Cpp :: how to output to a file in c++ 
Cpp :: how to interface c++ in haxe 
Cpp :: initialize a pair 
Cpp :: C++ Fahrenheit to Kelvin 
Cpp :: for loop reverse C++ 
Cpp :: How to block window resize sfml c++ 
Cpp :: c++ cmd program run in background 
Cpp :: rotate in cpp 
Cpp :: taking user input for a vector in c++ 
Cpp :: sort in descending order c++ stl 
Cpp :: check variable type c++ 
Cpp :: BMI Calculator Program in C++ 
Cpp :: c++ main environment variables 
Cpp :: c++ round number to whole 
Cpp :: remove element from vector on condition c++ 
Cpp :: minimum and maximum value of a vector in C++ 
Cpp :: tarray ue4 c++ 
Cpp :: mpi_bcast 
Cpp :: push front vector cpp 
Cpp :: include spaces while reading strings in cpp 
Cpp :: c++ extend class 
Cpp :: fiunction in c++ 
Cpp :: c++ hide show console 
Cpp :: bubble sort in c+ 
Cpp :: int to string c++ 
Cpp :: how to get an element in a list c++ 
Cpp :: How to pause a c++ program. 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =