Home > Article > Backend Development > What does the division sign mean in C language?
Division operator "/". Binary operator, left associative. When the quantities involved in the operation are all of integer type, the result will be of integer type and decimals will be rounded off. If one of the operands is a real type, the result is a double-precision real type.
Code example:
5/2=2,1/2=0 5/2.0=2.5
Recommended tutorial: c language tutorial
The above is the detailed content of What does the division sign mean in C language?. For more information, please follow other related articles on the PHP Chinese website!