I have the following simple C code:
void main(){ int A = 333; int B=244; int sum; sum = A + B; }
When I compile this w
I'm surprised no one mentioned gcc -S which skips assembly and linking altogether and outputs assembly code, albeit with a bunch of boilerplate, but it may be convenient just to poke around.
gcc -S