#include main() { /* This bit of code will print out the address of the variable number */ int number = 4; /* If we take out the ampersand symbol in the printf function, "4" will print out instead of the address of number */ printf("The address of number is %d\n", &number); }