# main.c Basic C program structure ## Includes ```c #include "utils.h" ``` ## Main Function ```c int main() { return subtract(add(42, 2), 2); } ```