1#include <stdio.h>2 3void foo() {4 int a_variable_in_foo = 10;5 printf("I am foo: %d.\n", a_variable_in_foo);6}7