I\'m making the (possibly wrong) assumption that it is implementation and/or system dependent. Is there something like INT_MAX or CHAR_BIT that would tell me the size of a p
#include #include void main() { printf(" %d",sizeof(int *)); printf(" %d",sizeof(char *)); printf(" %d",sizeof(float *)); printf(" %d",sizeof(double *)); getch(); }