Thread
:
please tell me how it is getting its output..
View Single Post
Ankur Kamboj
Light Poster
19Aug2011,21:49
main()
{
int *p,*q,i;
p=(int *)100;
q=(int *)200;
i=q-p;
printf("%d",i);
}
it is getting output 50 in turbo c compiler.I do not know how it is working please reply me...