What will be the output of this code
#include stdio.h
int *m()
{
int *p = 8;
return p;
}
void main()
{
int *k = m();
printf("%d", k);
}

Posted on by