I am using DEV GNU c++ compiler on windows 7 OS. I need to know how a program with more than one source file can be compiled. here is example,
#FILE1 void f
The simplest way is to precise the two files on the command line of gcc:
gcc
gcc file1.c file2.c