Home >Backend Development >C#.Net Tutorial >What types of operations are there in C language?
The types of operations in C language include: Arithmetic operations: addition, subtraction, multiplication, division, remainder, auto-increment, auto-decrement Comparison operations: equal to, not equal to, greater than, less than, greater than or equal to, less than or equal to Logical operations: AND, OR, non-bitwise operations: bitwise AND, bitwise OR, bitwise XOR, left shift, right shift Assignment operations: assignment, compound assignment Special operations: comma operator, conditional operator, address fetch operator, dereference operator, sizeof operator
#Types of operations in C language
In C language A series of operations are provided to perform various operations on data. Mainly include the following categories:
1. Arithmetic operations
2. Comparison operation
Bitwise AND (&)
Assignment (=)
Comma operator (,)
The above is the detailed content of What types of operations are there in C language?. For more information, please follow other related articles on the PHP Chinese website!