This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| using namespace std; | |
| int main () | |
| { | |
| //The computer assigns to A the address of the memory cell 0x00 | |
| //and stores in its data area the value 5 | |
| int A = 5; | |
| //With the operator & I get the address of A then the instruction |
OlderNewer