Header file includes

Macro Expansion

e.g:

#include <stdio.h>
#define FIRST SECOND
#define SECOND third
#define third int

FIRST main(void){
  printf("Hello\\n");
}

Conditional Compilation

#ifdef __unix__ /* __unix__ is usually defined by compilers targeting Unix systems */
# include <unistd.h>
#elif defined _WIN32 /* _WIN32 is usually defined by compilers targeting 32 or 64 bit Windows systems */
# include <windows.h>
#endif