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
Header files and related Libray functions in C programming

Comments

Popular posts from this blog

13. Control Strings in C Programming

4. What is Compiler ?

10. Data Types of C Programming

3. What is programming language ?

7. Introduction of C programming :

9. Header Files of C Programming

18. Identifiers and Keyword in C programming

8. Program structure rules of C programming