This repository is for practicing GCC.
gcc single.cWill generate a.out file. a.out is the default name of output file. To run the file, type:
./a.outExplore files
file a.outgcc -c extern.c
gcc -c main.c
gcc -o main main.o extern.oWill generate main file. To run the file, type:
./main-o option is used to specify the output file name.