#include main() { /* This bit of code will print out the address of the variable number, and show the value of numptr */ int number = 0; int *numptr = 0; numptr = &number; printf("The address of number is %d\n", &number); printf("The value of numptr is %d\n", numptr); //These two are equal! }