/* File: main.c This is a simple main program. It's main purpose is to include the header file header.h to show how #include and #ifndef work. */ #include "header.h" main() { int n ; n = sum(3, 4) ; }