2 votes
1 answer
1
#include int main() { int *p, a; p = &a; scanf("%d",p); printf("a = %d *p = %d", a, *p); }a = 32766 *p = 32766a = 32767 *p = 32767a = -1219137971 *p = -1219137971No Outpu...
1 votes
2 answers
2
Whenever we declare a variable then compiler will not look for other details such as definition of the variable. why is this statement true ?