Ποιο είναι το αποτέλεσμα
του ακόλουθου προγράμματος;
#include <stdio.h>
#include <conio.h>
main()
{
int x,y;
int *const ptr=&x;
*ptr
= 7;
ptr=&y;
printf(("y=%d
",y);
}