Skip to content

Instantly share code, notes, and snippets.

View neo7BF's full-sized avatar
😃

Alessandro Forcuti neo7BF

😃
View GitHub Profile
#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