Ποιο είναι το αποτέλεσμα
του ακόλουθου προγράμματος;
#include <stdio.h>
#include <conio.h>
main()
{
int a,*pa;
a=7;
pa=&a;
printf("The address of a is %d"
"\nThe value of pa is %d",&a,pa);
printf("\nThe value of a is %d"
"\nThe value of *pa is %d",a,*pa);
}