C - stdlib
Library Functions | Description |
---|---|
abort() | C Program को terminate करने का काम करता है | |
abs() | Absolute value को return किया जाता है | |
atof() | String data type को float data type में convert किया जाता है | |
atoi() | String data type को integer data type में convert किया जाता है | |
atol() | String data type को long data type में convert किया जाता है | |
calloc() | एक से अधिक Memory Blocks बनाने के लिए काम आता है | |
div() | दिए हुए numerator और denominator से remainder और quotient को निकला जाता है | |
exit() | Program को terminate करने का काम करता है | |
free() | malloc() और calloc() से जो memory allocate की गयी है, उसे deallocate कर देता है | |
malloc() | एक ही Memory Block बनाने के काम आता है | |
perror() | एक error handing function है | |
rand() | Random Number को 0 से RAND_MAX तक दिखता है | |
realloc() | अगर malloc() और calloc() की memory को बढाने और घटाने का काम करता है | |
strtod() | String data type को double data type में convert किया जाता है | |
strtol() | String data type को long data type में convert किया जाता है | |
system() | Operating system के command के लिए काम आता है | |