View Single Post
Banned
2Jan2010,20:43  
vignesh1988i's Avatar
void main()
{
int a,*b,**c;
a=90;
b=&a;
c=&b;
printf("%u",*(c++));
}

can u pl. say the o/p with reasons !!!!!!!!!


thank u