For example: sizeof(char*) returns 4. As does int*, long long*, everything that I\'ve tried. Are there any exceptions to this?
sizeof(char*)
int*
long long*
No, the size of a pointer may vary depending on the architecture. There are numerous exceptions.