12. Library Functions of C Programming
Library Functions :
Library functions are built in functions used to perform standard operations.The C language is accompanied by a number of library functions that carry out various commonly used operations or calculations. A library function is accessed by writing the function name, followed by list of arguments that represent information being passed to the function. The arguments must be enclosed in parenthesis and separated by commas. The arguments can be variables or constants. Some C library functions are sqrt(), fabs(), exp(), log(), pow(), sin(), cos(), tan(), floor(), ceil(), etc.
Header files and related Libray functions in C programming |
Comments
Post a Comment