Please enable JavaScript.
Coggle requires JavaScript to display documents.
C Compilation Porcess(the four stages) (Memory (Stack, Heap), Assemble…
C Compilation Porcess(the four stages)
1-Preprocessing
2-Compile
3-Assemble
4-Link
Memory
Stack
Heap
Assemble
main.o(Object file)
GCC
gcc -c main.c
Compile
main.s
GCC
gcc -S main.c
Link
GCC
gcc main.c -o main
main.exe(executable program)
Preprocessing
temporary file that can be printed on stdout
GCC
gcc -E main.c
linking
static
dynamic
By Nacer Salah Eddine