You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: include/universal/math/math.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,8 @@
5
5
|---------------|-------------|
6
6
| abs ( ) | absolute value of an integer. The absolute value of a number is always positive. Only integer values are supported in C. |
7
7
| floor ( ) | nearest integer which is less than or equal to the argument passed to this function. |
8
-
| round ( ) | nearest integer value of the float/double/long double argument passed to this function. If decimal value is from “.1 to .5”, it returns integer value less than the argument. If decimal value is from “.6 to .9”, it returns the integer value greater than the argument. |
9
8
| ceil ( ) | return nearest integer value which is greater than or equal to the argument passed to this function. |
9
+
| round ( ) | nearest integer value of the float/double/long double argument passed to this function. If decimal value is from “.1 to .5”, it returns integer value less than the argument. If decimal value is from “.6 to .9”, it returns the integer value greater than the argument. |
/* Microsoft Visual Studio. --------------------------------- */
71
71
72
-
// STD LIB function for IEEE floats: Categorizes floating point value arg into the following categories: zero, subnormal, normal, infinite, NAN, or implementation-defined category.
0 commit comments