Complete the code to include the header file utils.h in main.c.
#include [1] int main() { print_message(); return 0; }
To include your own header file, use double quotes like "utils.h".
Complete the code to declare the function print_message in utils.h.
void [1]();The function name must match exactly the one defined in the source file, which is print_message.
Fix the error in the function definition in utils.c by completing the function name.
void [1]() { printf("Hello from utils!\n"); }
The function definition must use the exact name print_message to match the declaration and usage.
Fill both blanks to complete the Makefile rule to compile main.o from main.c.
main.o: [1] utils.h [2] -c main.c
The source file main.c is the dependency, and gcc is the compiler command.
Fill all three blanks to complete the Makefile rule to link main.o and utils.o into the executable app.
app: main.o utils.o [1] [2] [3] -o app
Use gcc to link object files main.o and utils.o into the executable app.