simple question 'bout compiling c program
main.c = the driver/main program
included1.c and included2.c is included file in main.c
just curious what is the diffrent in compiling process between
gcc -o program main.c included1.c included2.c
with
gcc -o program included1.c included2.c main.c
|