C Language Tutorial
ions help organize code into reusable blocks. Declaring and defining a function involves specifying the return type, function name, and parameters: ```c int add(int a, int b) { return a + b; } ``` You can call the function in `main()` or elsewhere to perform the addition