|
 |
|
|
|
|
Parameter:
Function return value: |
|
|
|
| |
|
|
|
|
An int expression i An int value that is the absolute value of i |
|
|
|
|
|
 |
|
|
|
|
Parameter:
Function return value:
Note: |
|
|
|
|  |
|
|
|
|
A string (null-terminated char array) str representing a floating point number, possibly preceded by whitespace characters and a + or -
A double value that is the floating point equivalent of the characters in str Conversion stops at the first character in str that is inappropriate for a floating point number. If no appropriate characters were found, the return value is system-dependent. |
|
|
|
|
|
 |
|
|
|
|
Parameter:
Function return value:
Note: |
|
|
|
|  |
|
|
|
|
A string (null-terminated char array) str representing an integer number, possibly preceded by whitespace characters and a + or -
An int value that is the integer equivalent of the characters in str Conversion stops at the first character in str that is inappropriate for an integer number. If no appropriate characters were found, the return value is system-dependent. |
|
|
|
|
|
 |
|
|
|
|
Parameter:
Function return value:
Note: |
|
|
|
|  |
|
|
|
|
A string (null-terminated char array) str representing a long integer, possibly preceded by whitespace characters and a + or -
A long value that is the long integer equivalent of the characters in str Conversion stops at the first character in str that is inappropriate for a long integer number. If no appropriate characters were found, the return value is system-dependent. |
|
|
|
|