1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include <stdio.h> #include "inc.h" #include "include1.h" #include "include2.h" int main(void) { printf("Hello from subdir/subdir_includes.c\n"); printf("Hello from %s\n", INC_STRING); printf("Hello from %s\n", INCLUDE1_STRING); printf("Hello from %s\n", INCLUDE2_STRING); return 0; }