What will be the output of following:

#include stdio.h
int main()
{
int *a,m=8;
a=&m;
printf("value of m %d\n",*a);
m=9;
printf ("value of m %d\n",*a);
}





Posted on by