foo.c   [plain text]



int x = 0;
int *p = &x;

int foo() {
	return *p;
}