Chap - 4 Functions in C Language
Chap - 4 Functions in C Language
Languages
Semester 3
12 octobre 2024
Course outline
3 Recursivity
4 Types of functions
subtle traps...
Dave Small
1.1. Introduction
A function in C is a set of statements that when called
perform some specific tasks.
course!
Function Declaration
Function Definition
Function Calls
2.1. Definition
Function Arguments (also known as Function Parameters) are
the data that is passed to a function.
Example:
3.1. Definition
Recursion is the technique of making a function call itself.
4.1. Definition
There are two types of functions in C:
Library Functions
User Defined Functions