#include #include int main(void) { // initialize pointer variables int i = 1; int *p1 = &i; printf("%i", *p1); return 0; }