Unit 3 discussion: functions | Introuduction to programming | ECPI University
Modules in C are called functions. C programs are typically written by combining user-created functions as well as “pre-packaged” functions found in the C Standard Library. For instance, printf() is a function that is found in the C Standard Library and is accessed through the stdio.h header file. In this Unit, we are going to focus on creating our own functions. You can create a […]