I've perused the possible duplicates, however I hope I'm having an off day because none of the answers there are sinking in.
tl;dr: How are source and header files related in C? Do projects sort out declaration/definition dependencies implicitly at build time?
Maybe this example will be fraught with glaring issues (if so, feel free to advise) but I'm trying to understand how the compiler understands the relationship between .c and .h files.
Given these files:
header.h:
int returnSeven(void);
source.c:
int returnSeven(void){
return 7;
}
main.c:
#include <stdio.h>
#include <stdlib.h>
#include "header.h"
int main(void){
printf("%d", returnSeven());
return 0;
}
Will this mess compile? (barring any foolish syntactic errors) I'm currently doing my work in NetBeans 7.0 with gcc from Cygwin which (correct me if I'm wrong) automates much of the build task. When a project is compiled (either automatically via an IDE, or by hand at command line) will the project files involved sort out this implicit inclusion of source.c based on the declarations in header.h? This is where I'm confused.
Cbooks. I'll certainly look into compilation units and linkage, however for the sake of focusing on learning syntax, I'll let NetBeans + gcc figure this out for me. Given that, whenever a given header file has declarations for which definitions exist elsewhere in the project, the inclusion of that header file is sufficient to provide access to the defined functionality, and the compiler will sort out the details? – Bracketworks May 5 '11 at 22:00header.hneeds include guards ;) – alternative May 5 '11 at 22:01gcc main.c -c -o main.o,gcc source.c -c -o source.o,gcc main.o source.o -o programwill compile that. It makes it easy to see the separate compiled units and the linking at the end. – alternative May 5 '11 at 22:02