/* File: include2.c This program demonstrates what #include does. Look at the output when compiled with gcc -E We omit the #include in this version for clarity. */ int main() { #include "hello.c" return 0 ; }