1. The document discusses various mathematical functions in C language such as trigonometric, logarithmic, exponential and power functions. It provides examples of using functions like sin, cos, sqrt, exp, pow in a C program.
2. Character handling functions and string functions are also covered. Examples of character classification functions like isalpha and string functions like strlen, strcmp are given.
3. The document explains user-defined functions in C - how to define, call and pass arguments to functions. Examples of functions that return or not return values are provided.