/* setptr.c - pointterien alustaminen */ #include main() { int x, y, *p; x = 5; p = &x; y = *p; printf("x = %d ja y = %d\n", x, y); }