Programming Reference/Librarys
Question & Answer
Q&A is closed
| Function | Description |
|---|---|
| atof | converts a string to a floating-point value |
| atoi | converts a string to a integer value |
| atol | converts a string to a long integer value |
| strtod | converts a string to a double value |
| strtol | converts a string to a long integer value |
| strtoul | converts a string to a unsigned integer value |
| Function | Description |
|---|---|
| abort | causes abnormal program termination without cleaning up |
| atexit | registers a function to be called on exit() invocation |
| exit | causes normal program termination with cleaning up |
| getenv | accesses the list of the environment variables |
| system | calls the host environments command processor |
| Function | Description |
|---|---|
| sizeof | calculate the size of any datatype |