I tried to do
char ** ptr = (char**)100
in C and tried to add ptr +(int)ptr and i expected that answer would be 200, but aactually its 500. Can someone explain how this work?
Also when I tried with single pointer
char * ptr = (char*)100
or even without themchar ptr = (char)100, answer was 200 and that really confused me.