To generate assembly code out of your C program, type following command:
$gcc -S
Then to generate object file out of the assembly file, type following command:
$gcc -c
Then to compile it into a program will be following:
$gcc
To generate assembly code out of your C program, type following command:
$gcc -S
Then to generate object file out of the assembly file, type following command:
$gcc -c
Then to compile it into a program will be following:
$gcc