Ubuntu – Do the disassemblers otool and objdump output the exact machine instructions contained in an executable?
I have this simple C program in a file named test.c : void fx2(){ int c = 30; c++; } void fx1(){ int b = 20; b++; fx2(); } int main(){ int a = 10; a++; fx1(); } I've compiled…