Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For example: sizeof(char*) returns 4. As does int*, long long*, everything that I've tried. Are there any exceptions to this?

share|improve this question
8  
Why mark this down? Good question for any beginner. – Loki Astari Dec 29 '08 at 23:11
I agree completely. – BobbyShaftoe Dec 30 '08 at 3:08
1  
I suspect that another question is hiding in this one: "What is sizeof?" or may be "Why is sizeof <any pointer> == 4? What's so special about 4?". Am I right? – Arkadiy Dec 31 '08 at 17:14
Well, it depends on your platform. Most implementations share a same size for every kind of pointer on a specific platform. – phoeagon May 16 at 12:13

13 Answers

up vote 67 down vote accepted

The guarantee you get is that sizeof(char) == 1. There are no other guarantees, including no guarantee that sizeof(int *) == sizeof(double *).

In practice, pointers will be size 2 on a 16-bit system (if you can find one), 4 on a 32-bit system, and 8 on a 64-bit system, but there's nothing to be gained in relying on a given size.

share|improve this answer
23  
And 3 bytes on a 24-bit system. Yes, I've worked on one. Welcome to the world of embedded devices. – dwj Dec 29 '08 at 23:13
4  
I've worked on 16-bit systems with 20-bit pointers as well. I should go see what sizeof returns in that case... – Judge Maygarden Dec 29 '08 at 23:16
1  
@monjardin: IIRC, the 8086 was like that. There was a 16 bit address and a 4 bit segment register. I believe a normal "NEAR" pointer was 16 bits and a pointer declared as "FAR" was more, probably 24, though I'm not sure. – rmeador Dec 29 '08 at 23:22
I worked on a (32-bit) system where the 'char *' to something had a different bit representation to the 'anthing_else *' to the same memory location. You learned to ensure that 'malloc()' was declared (because in those days of yore, malloc() returned 'char *' and not 'void *'). Beware! – Jonathan Leffler Dec 30 '08 at 0:10
4  
another guarantee is that sizeof(char*) == sizeof(void*) , because they have to have the same representationss (object [size] and value [set of bits relevant for their value] representation) – Johannes Schaub - litb Jan 3 '09 at 16:03
show 9 more comments

if you are compiling for a 64-bit machine, then it will be 8.

share|improve this answer

Just another exception to the already posted list. On 32-bit platforms, pointers can take 6, not 4, bytes:

#include <stdio.h>
#include <stdlib.h>

int main() {
    char far* ptr; // note that this is a far pointer
    printf( "%d\n", sizeof( ptr));
    return EXIT_SUCCESS;
}

If you compile this program with Open Watcom and run it, you'll get 6, because far pointers that it supports consist of 32-bit offset and 16-bit segment values

share|improve this answer
Good example! +1 – osgx Mar 24 '10 at 0:21
2  
Not segment, but selector rather - it isn't a part of the memory address, but an index entry in the LDT or GDT and has some access flags – Roee Shenberg May 29 '12 at 1:45
2  
Of course far is non-standard. – Keith Thompson Jul 1 '12 at 1:47

Even on a plain x86 32 bit platform, you can get a variety of pointer sizes, try this out for an example:

struct A {};

struct B : virtual public A {};

struct C {};

struct D : public A, public C {};

int main()
{
    cout << "A:" << sizeof(void (A::*)()) << endl;
    cout << "B:" << sizeof(void (B::*)()) << endl;
    cout << "D:" << sizeof(void (D::*)()) << endl;
}

Under Visual C++ 2008, I get 4, 12 and 8 for the sizes of the pointers-to-member-function.

Raymond Chen talked about this here.

share|improve this answer
3  
Pointers to member functions are a real pain. It is unfortunate that not all compilers does it like the Digital Mars C++ compiler, which return 4 in all cases. – dalle Feb 18 '09 at 15:21
gcc 4.72 print all 8 ... Is this undefined in c++ standard ? – Gob00st Nov 3 '12 at 18:54
@Gob00st: The only thing that's defined is that char is 1. Other types can be whatever size is relevant to that compiler. There's no requirement for consistency between these pointer types. – Eclipse Nov 3 '12 at 22:38
ok thanks. Then no wonder gcc & VC have different implementation . – Gob00st Nov 3 '12 at 23:05
1  
@Eclipse yes there is: char <= short <= int <= long <= long long – Cole Johnson Nov 14 '12 at 6:10
show 1 more comment

Technically speaking, the C standard only guarantees that sizeof(char) == 1, and the rest is up to the implementation. But on modern x86 architectures (e.g. Intel/AMD chips) it's fairly predictable.

You've probably heard processors described as being 16-bit, 32-bit, 64-bit, etc. This usually means that the processor uses N-bits for integers. Since pointers store memory addresses, and memory addresses are integers, this effectively tells you how many bits are going to be used for pointers. sizeof is usually measured in bytes, so code compiled for 32-bit processors will report the size of pointers to be 4 (32 bits / 8 bits per byte), and code for 64-bit processors will report the size of pointers to be 8 (64 bits / 8 bits per byte). This is where the limitation of 4GB of RAM for 32-bit processors comes from -- if each memory address corresponds to a byte, to address more memory you need integers larger than 32-bits.

share|improve this answer
"You've probably heard processors described as being 16-bit, 32-bit, 64-bit, etc. This usually means that the processor uses N-bits for integers." -> I'm having a 64-bit machine but the sizeof(int) is 4 bytes. If your statement is true, how could this be possible?! – Sangeeth Saravanaraj Apr 17 '12 at 18:27
@SangeethSaravanaraj: For backwards compatibility with 32-bit code, they decided to have int continue to be 4 bytes and require you to opt-in to using the 8 byte type by specifying 'long'. long is actually the native word size on x86-64. One way to see this is that typically compilers will pad your structs to make them word aligned (though there may be architectures where word size and alignment are unrelated), so if you make a struct with an int (32-bits) in it, and call sizeof() on it, if you get back 8 you know it's padding them to 64-bit word size. – Joseph Garvin Apr 17 '12 at 20:08
@SangeethSaravanaraj: Note that theoretically the native word size of the CPU and what the compiler decides 'int' is can be arbitrarily different, it's just it was convention for 'int' to be the native word size before x86-64 came around, where it's long to ease backwards compat. – Joseph Garvin Apr 17 '12 at 20:10
Thanks for the explanation! :) – Sangeeth Saravanaraj Apr 17 '12 at 20:11

From what I recall, it's based on the size of a memory address. So on a system with a 32-bit address scheme, sizeof will return 4, since that's 4 bytes.

share|improve this answer
3  
There is no such requirement. There is not even a requirement that sizeof(unsigned int) == sizeof(signed int). The size of a pointer to an int will always be, by definition, sizeof(int *), to a char sizeof(char *) etc. Relying on any other assumption is a bad idea for portability. – Mihai Limbășan Dec 30 '08 at 11:15
Ah, I see now. Thanks for the info. – Will Mc Dec 30 '08 at 15:52
1  
Could still return 2, if CHAR_BIT is 16. sizeof() counts in number of chars, not octets. – MSalters Apr 6 '09 at 13:56

In addition to the 16/32/64 bit differences even odder things can occur.

There have been machines where sizeof(int *) will be one value, probably 4 but where sizeof(char *) is larger. Machines that naturally address words instead of bytes have to "augment" character pointers to specify what portion of the word you really want in order to properly implement the C/C++ standard.

This is now very unusual as hardware designers have learned the value of byte addressability.

share|improve this answer
The C compiler for Cray vector machines, such as the T90, do something similar. Hardware addresses are 8 bytes, and point to 8-byte words. void* and char* are handled in software, and are augmented with a 3-bit offset within the word -- but since there isn't actually a 64-bit address space, the offset is stored in the high-order 3 bits of the 64-bit word. So char* and int* are the same size, but have different internal representations -- and code that assumes that pointers are "really" just integers can fail badly. – Keith Thompson Jul 1 '12 at 1:49

In general, sizeof(pretty much anything) will change when you compile on different platforms. On a 32 bit platform, pointers are always the same size. On other platforms (64 bit being the obvious example) this can change.

share|improve this answer

The reason the size of your pointer is 4 bytes is because you are compiling for a 32-bit architecture. As FryGuy pointed out, on a 64-bit architecture you would see 8.

share|improve this answer

A pointer is just a container for an address. On a 32 bit machine, your address range is 32 bits, so a pointer will always be 4 bytes. On a 64 bit machine were you have an address range of 64 bits, a pointer will be 8 bytes.

share|improve this answer
On a 32-bit machine with 32-bit bytes, sizeof(char *) could be 1. – Robert Gamble Dec 29 '08 at 23:28
"...with 32-bit bytes". I didn't know such things existed...fancy that. – Ed S. Dec 30 '08 at 6:48
1  
On a 32 bit duck, sizeof(char *) returns PI – Adriano Varoli Piazza Dec 30 '08 at 11:08

No, the size of a pointer may vary depending on the architecture. There are numerous exceptions.

share|improve this answer

In addition to what people have said about 64-bit (or whatever) systems, there are other kinds of pointer than pointer-to-object.

A pointer-to-member might be almost any size, depending how they're implemented by your compiler: they aren't necessarily even all the same size. Try a pointer-to-member of a POD class, and then a pointer-to-member inherited from one of the base classes of a class with multiple bases. What fun.

share|improve this answer

It will always be equal to sizeof size_t.

On 32-bit machines this tends to be 4. On 64-bit machines this tends to be 8.

share|improve this answer
embedded.com/columns/programmingpointers/200900195 Thanks for downmodding me. – Max Jan 1 '09 at 22:13
2  
size_t is tied to the size of the biggest possible single object. char* must be able to address all bytes in all objects. So, size_t can be 2 byte (objects <64KB) even if char* is 4 byte (sufficient for e.g. 65536 objects of 65535 bytes each) – MSalters Jan 2 '09 at 15:13
MSalters, you are right: sort of. On closer inspection, the only guarantee is that size_t can address any point in memory. Thus it will always be equal to or greater than sizeof(char *). I will leave my answer up for now so others may learn from it. – Max Jan 3 '09 at 9:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.