<<< Computer memory, cont. | Index | Quick look at the disassembly >>> |
Consider:
int main() { int x = 1; int y = 2; y = y + x; return 0; }
How many CPU instructions does it take to compute the following statement?
y = y + x;
<<< Computer memory, cont. | Index | Quick look at the disassembly >>> |