c compiling simple question
just curious if i have
main.c = main program
included1.c and included2.c = included file in main.c
what is the difference in compiling between :
gcc -o main main.c included1.c included2.c
and
gcc -o main included1.c included2.c main.c
|