In this Video you will learn how compilation works. We will talk about the four important steps like preprocessing, assembly, compilation & linking.
Command to get preprocessor output:
gcc -E file.c
Command to get assembler output:
gcc -S file.c
Command to get object/binary code:
gcc -C file.c
Command to produce final executable (linking):
gcc -o executablename.out file.o
For more visit : https://www.cppbuzz.com