/* * pointer.c */ #include int main(int argc, char *argv[]) { int x = 42; float y = 25.3; printf("x = %d and is stored at %p\n", x, &x); printf("y = %.2f and is stored at %p\n", y, &y); }