
Listing 2:
show()
{
	auto int ir;
	register int *address_of_ir;
	
	ir = 7;
	address_of_ir = &ir;
	printf("In show, i = %d\n", *address_of_ir);
}
