From C to assembly

assemblyc

can somebody please explain, I have a program on C, can I convert it to assembly? if yes, how?

Best Answer

If you use gcc you can do gcc -O2 -S -c foo.c according to this page to get the output assembly in a human readable form.