1.

What will be output if you will compile and execute the following c code? #includeint * call();int main(){ int *ptr;ptr=call();printf("%d",*ptr); return 0;} int * call(){int a=25;a++;return &a;}

A. 25
B. 26
C. any adress
D. garbage value
Answer» E.


Discussion

No Comment Found

Related MCQs