Search results: operation string in c

the double atof function (const char * str) in standard c library converts a string pointed to by parameter str to a floating point number (type double).

the int atoi function (const char * str) in standard c library converts a string pointed to by parameter str to an integer (int type).

the function long int atol (const char * str) in the standard c library converts a string pointed to by parameter str to some long int.

the double strtod function (const char * str, char ** endptr) in standard c library converts a string pointed to by parameter str to a floating point number (type double).

the function long int strtol (const char * str, char ** endptr, int base) in standard c library converts part of the original string in str to a value of long int corresponding to

the unsigned function long int strtoul (const char * str, char ** endptr, int base) in standard c library converts part of the original string in str to a value of long int