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
Size of Pointer depends upon your Operating System (actually the number of bits of Operating System), try sizeof(type*) function.