The document provides examples of using functions in C programming. It explains what a function is, how to define a function with return type, parameters, and body. It also discusses function declaration, calling a function, function arguments, and the difference between call by value and call by reference. Examples are given to demonstrate defining, declaring, calling functions, and how call by value does not actually change the argument values unlike call by reference. The document also briefly mentions formal parameters and how they behave like local variables inside a function.