Let us assume I have declared the variable \'i\' of certain datatype (might be int, char, float or double) ...
NOTE: Simply consider that \'i\' is
int *a, *b,c,d;/* one must remove the declaration of c from here*/ int c=10; a=&c; b=a; a++; d=(int)a-(int)b; printf("size is %d",d);