Library functions are predefined functions provided by C standard libraries to perform common tasks like input/output, math operations, string handling, etc.
Common      Library Functions

Function	     Purpose
printf()	     Output
scanf()	     Input
sqrt()	     Square root
strlen()	     String length
SYNTAX:

#include <stdio.h>
#include <math.h>
Previous Next