View Single Post
Light Poster
12Feb2008,20:20  
johnson.reddy's Avatar
Code:
double i;

double * p = &i;

double * q= p;

p++;

cout<<(int)p-(int)q<<endl;