#include <stdio.h>
#include <stdlib.h>

void f1(void) ; 

int Global ; 

void main(void) {

	static int static_main ; 
	int bob ; 

	printf("Address of Global: %p\n", &Global) ; 
	printf("Address of static_main: %p\n", &static_main) ; 
	printf("Address of bob: %p\n", &bob) ; 
	printf("Address of f1: %p\n", &f1) ; 
	f1() ; 
}

void f1(void) {

	static int static_f1 ; 
	int ted ; 
	
	printf("Address of static_f1: %p\n", &static_f1) ;
	printf("Address of ted: %p\n", &ted) ; 
} 

