#include main( ) { float x, y; int *p; // Λανθασμένη δήλωση δείκτη x = 12.35; y = -3.78; p=&x; y=*p; printf("x= %f, y=%f, p= %d", x, y, p); }