#include <stdio.h>

static int foo = 123;
static int bar = 456;

int main(void) {
    printf("foo = %d; bar = %d\n", foo, bar);
    int *fooptr = &foo;
    printf("*fooptr = %d\n", *fooptr);
    ++fooptr;
    printf("*fooptr = %d\n", *fooptr);
    return 0;
}
