Compile as you go
uMany inexperienced programmers create an entire first draft of a program (possibly hundreds of lines of code) without ever compiling it.
ØOften requires hours of debugging.
ØErrors are inevitable (misspellings, typos, etc.)
uCompile your code every few minutes
ØCreate the function name with one line of code (which might even be NULL) and save it before doing anything else.
ØEvery few lines, compile the code again to check for errors.
ØNever write more than about ten lines of code without compiling it.