Thread
:
calculating size of int without sizeof operator
View Single Post
johnson.reddy
Light Poster
12Feb2008,20:20
Code:
double i; double * p = &i; double * q= p; p++; cout<<(int)p-(int)q<<endl;