The document discusses functions in C programming. It covers:
- Functions allow dividing programs into reusable blocks of code. They can be called multiple times.
- Advantages include avoiding duplicating code, calling functions from anywhere, and improving readability. However, function calls require overhead.
- There are three aspects of a function: declaration, call, and definition. Declaration specifies the name, parameters, and return type. Definition contains the code.
- Functions can return values or not. They can accept arguments or not. Library functions are predefined, while user-defined functions are created by the programmer.