previous | start | next

Arithmetic Operations and Registers

For

int x, y;
...
x = x + y;
     

Both x and y will be allocated memory locations.

To execute the statement above,



previous | start | next