In this basic example, we will see how to use a header file, compile two source files into one executable, and separate a C program into its component parts using gcc.
File Structure:
main.c: The main source file.
functions.c: A source file contain...