Tagged Questions

sizeof refers to the Standard C operator returning the size of an expression or type. The result is of type size_t, which is guaranteed to be an unsigned type.

learn more… | top users | synonyms

231
votes
9answers
6k views

Why does sizeof(x++) not increment x?

Here is the code compiled in dev c++ windows: #include <stdio.h> int main() { int x = 5; printf("%d and ", sizeof(x++)); // note 1 printf("%d\n", x); // note 2 return 0; } I ...
76
votes
7answers
6k views

Why isn't sizeof for a struct equal to the sum of sizeof of each member?

Why does the 'sizeof' operator return a size larger for a structure than the total sizes of the structure's members?
40
votes
13answers
7k views

Is the sizeof(some pointer) always equal to four?

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

Can sizeof return 0 (zero)

Is it possible for the sizeof operator to ever return 0 (zero) in C or C++? If it is possible, is it correct from a standards point of view?
30
votes
7answers
22k views

How do I determine the size of an object in Python?

In C, we can find the size of an int, char, etc. I want to know how to get size of objects like a string, integer, etc. in Python. Related question: How many bytes per element are there in a Python ...
24
votes
4answers
777 views

In C, why is sizeof(char) 1, when 'a' is an int?

I tried printf("%d, %d\n", sizeof(char), sizeof('a')); and got 1, 4 as output. If size of a character is one, why does 'c' give me 4? I guess it's because it's an integer. So when I do char ch = ...
24
votes
4answers
1k views

Are there machines, where sizeof(char) != 1?

Are there machines (or compilers), where sizeof(char) != 1 ? Does C99 standard says that sizeof(char) on standard compliance implementation MUST be exactly 1? If it does, please, give me section ...
20
votes
7answers
801 views

Is return an operator or a function?

This is too basic I think, but how do both of these work? return true; // 1 and return (true); // 2 Similar: sizeof, exit My guess: If return was a function, 1 would be erroneous. ...
18
votes
9answers
14k views

JavaScript object size

I want to know the size occupied by a JavaScript object. Take the following function - function Marks() { this.maxMarks = 100; } function Student() { this.firstName = "firstName"; ...
17
votes
2answers
356 views

Why do I get different results when I apply sizeof operator?

I have this program #include <stdio.h> int main() { char arr[100]; printf("%d", (int)sizeof(0,arr)); } This prints 4 when compiled as a C file and prints 100 as a C++ file. Why? I am ...
17
votes
5answers
2k views

Why is the size of an empty class in C++ not zero?

Why does the following output 1? #include <iostream> class Test { }; int main() { std::cout << sizeof(Test); return 0; }
17
votes
9answers
3k views

Why is sizeof an operator?

Why is sizeof considered an operator and not a function? What property is necessary for something to qualify as operator?
17
votes
10answers
2k views

Why are C character literals ints instead of chars?

In C++, sizeof('a') == sizeof(char) == 1. This makes intuitive sense, since 'a' is a character literal, and sizeof(char) is defined to be 1 by the standard. But in C, sizeof('a') == sizeof(int). That ...
16
votes
5answers
778 views

Why is −1 > sizeof(int)?

Consider the following code: template<bool> class StaticAssert; template<> class StaticAssert<true> {}; StaticAssert< (-1 < sizeof(int)) > xyz1; // Compile error ...
16
votes
6answers
4k views

sizeof(int) on x64?

When I do sizeof(int) in my C#.NET project I get a return value of 4. I set the project type to x64, so why does it say 4 instead of 8? Is this because I'm running managed code?
15
votes
5answers
937 views

why sizeof(13.33) is 8 bytes?

When I give sizeof(a), where a=13.33, a float variable, the size is 4 bytes. But if i give sizeof(13.33) directly, the size is 8 bytes. I do not understand what is happening. Can someone help? ...
15
votes
10answers
2k views

Sizeof an array in the C programming language?

why isn't the size of an array sent as a parameter the same as within main? #include <stdio.h> void PrintSize(int p_someArray[10]); int main () { int myArray[10]; printf("%d\n", ...
13
votes
4answers
10k views

Why do I get a warning everytime I use malloc?

If I use malloc in my code: int *x = malloc(sizeof(int)); I get this warning from gcc: new.c:7: warning: implicit declaration of function ‘malloc’ new.c:7: warning: incompatible implicit ...
13
votes
7answers
830 views

Are there are any platforms where pointers to different types have different sizes?

The C standard allows pointers to different types to have different sizes, e.g. sizeof(char*) != sizeof(int*) is permitted. It does, however, require that if a pointer is converted to a void* and ...
12
votes
3answers
287 views

sizeof(“”+0) != sizeof(char *) Bug or undefined behaviour?

The following C program: #include <stdio.h> int main(void) { printf("%u %u %u\n",sizeof "",sizeof(""+0),sizeof(char *)); return 0; } outputs 1 4 4 when compiled with GCC on Linux, ...
12
votes
12answers
622 views

How does sizeof know the size of the operand array?

This may be a stupid question but how does the sizeof operator know the size of an array operand when you don't pass in the amount of elements in the array. I know it doesn't return the total ...
12
votes
8answers
1k views

Is it necessary to multiply by sizeof( char ) when manipulating memory?

When using malloc and doing similar memory manipulation can I rely on sizeof( char ) being always 1? For example I need to allocate memory for N elements of type char. Is multiplying by sizeof( char ...
12
votes
3answers
3k views

Question on multiple inheritance, virtual base classes, and object size in C++

The following code prints 20, i.e. sizeof(z) is 20. #include <iostream.h> class Base { public: int a; }; class X:virtual public Base { public: int x; }; ...
12
votes
4answers
524 views

Different sizeof results

Why does n not equal 8 in the following function? void foo(char cvalue[8]) { int n = sizeof cvalue; } But n does equal 8 in this version of the function: void bar() { ...
11
votes
5answers
352 views

why there is no sizeof in java

For what design reason there is no sizeof operator in java? knowing that it is very useful in c++ and c# and how you can get the size of a certain type if needed?
11
votes
4answers
307 views

Why would the size of a packed structure be different on Linux and Windows when using gcc?

In the code below, why is the size of the packed structure different on Linux and Windows when compiled with gcc? #include <inttypes.h> #include <cstdio> // id3 header from an mp3 file ...
11
votes
8answers
348 views

C/C++ getting struct size

Today, with my great surprise, I discovered that When the sizeof operator is applied to a class, struct, or union type, the result is the number of bytes in an object of that type, plus any ...
11
votes
3answers
409 views

Why doesn't sizeof parse struct members?

I know that sizeof is a compile-time calculation, but this seems odd to me: The compiler can take either a type name, or an expression (from which it deduces the type). But how do you identify a ...
11
votes
4answers
23k views

How to find the sizeof( a pointer pointing to an array )

First off, here is some code: int main() { int days[] = {1,2,3,4,5}; int *ptr = days; printf("%u\n", sizeof(days)); printf("%u\n", sizeof(ptr)); return 0; } Is there a any way ...
10
votes
11answers
1k views

Pointer Implementation Details in C

I would like to know architectures which violate the assumptions I've listed below. Also I would like to know if any of the assumptions are false for all architectures (i.e. if any of them are just ...
10
votes
5answers
740 views

Why call sizeof operator with two arguments?

I recently came across some code that looked like: if(sizeof(var,2) == 4) { ... } (where var is a type) I was quite surprised to see what appeared to be two arguments to the sizeof operator. A ...
10
votes
5answers
5k views

Checking the size of an object in Objective-C

I'm trying to find the size of an objective-c object. I'm using something similar to: NSLog(@"sizeof myObject: %ld", sizeof(*myObject)); That just gives me the size of the pointer though. ...
9
votes
4answers
221 views

sizeof() of an array with random length

Can you explain how the sizeof() works with a random length array? I thought sizeof() on an array is calculated during the compilation, however, the size of an array with random length seems to be ...
9
votes
5answers
1k views

C: sizeof single struct member

I am trying to declare a struct that is dependent upon another struct. I want to use sizeof to be safe/pedantic. typedef struct _parent { float calc ; char text[255] ; int used ; } parent_t ; ...
9
votes
2answers
474 views

Checking the sizeof an integer type in the preprocessor

Possible Duplicate: Why can’t I use sizeof in a preprocessor condition ? How can I check the size of an unsigned in the preprocessor under g++? sizeof is out of the question since it ...
9
votes
3answers
1k views

Sizeof array passed as parameter

Given the following program #include <iostream> using namespace std; void foo( char a[100] ) { cout << "foo() " << sizeof( a ) << endl; } int main() { char bar[100] = { ...
8
votes
1answer
116 views

sizeof() structures not known. Why?

Why can't I use sizeof() on simple structs? eg: private struct FloatShortPair { public float myFloat; public short myShort; }; int size = sizeof(FloatShortPair); //CS0233 error CS0233: ...
8
votes
7answers
342 views

c++ sizeof() of a class with functions

I have a C++ question. I wrote the following class: class c { int f(int x, int y){ return x; } }; I the sizeof() class c returns "1". I must stress that I really don't understand why it returns ...
8
votes
3answers
184 views

C++ sizeof wrapper class

Suppose I have a class A that does not inherit from anything, has no virtual methods, and has exactly one variable of type T. Does C++ guarantee sizeof(A) == sizeof(T)? EDIT: Also if T were a ...
8
votes
6answers
1k views

Size of Primitive data types

On what exactly does the size of a primitive data type like int depend on? Compiler Processor Development Environment Or is it a combination of these or other factors? An explanation on the ...
8
votes
4answers
246 views

What is the size of a Nullable<Int32>?

So, a couple of questions, actually: An int (Int32) is specified to be (obviously) 32 bits. What about an int? (Nullable<int>)? My gut tells me that it would be 32 bits for the integer plus 8 ...
8
votes
2answers
386 views

Is there a bit-equivalent of sizeof() in C?

Sizeof() doesn't work when applied to bitfields: # cat p.c #include<stdio.h> int main( int argc, char **argv ) { struct { unsigned int bitfield : 3; } s; fprintf( stdout, ...
8
votes
4answers
1k views

Is sizeof in C++ evaluated at compilation time or run time?

For example result of this code snippet depends on which machine: the compiler machine or the machine executable file works? sizeof(short int)
8
votes
6answers
770 views

How to determine the size of an array of strings in C++?

I'm trying to simply print out the values contained in an array. I have an array of strings called 'result'. I don't know exactly how big it is because it was automatically generated. From what I've ...
8
votes
7answers
7k views

sizeof a union in C/C++

What is the sizeof the union in C/C++? Is it the sizeof the largest datatype inside it? If so, how does the compiler calculate how to move the stack pointer if one of the smaller datatype of the union ...
8
votes
11answers
3k views

C: Why isn't size_t a C keyword?

sizeof is a C keyword. It returns the size in a type named size_t. However, size_t is not a keyword, but is defined primarily in stddef.h and probably other C standard header files too. Consider a ...
7
votes
7answers
199 views

What is the largest value sizeof(T) can yield?

At first one might think std::numeric_limits<size_t>::max(), but if there was an object that huge, could it still offer a one-past-the-end pointer? I guess not. Does that imply the largest value ...
7
votes
5answers
217 views

Using ++ inside the sizeof keyword [closed]

Possible Duplicate: what's the mechanism of sizeof() in C/C++? Hi, I'm a TA for a university, and recently, I showed my undergraduate students the following C code from a C puzzle I ...
7
votes
3answers
316 views

sizeof(struct) returns unexpected value

This should be simple but I have no clue where to look for the issue: I have a struct: struct region { public: long long int x; long long int y; long long int width; long long int ...
7
votes
8answers
397 views

Is the size of a struct required to be an exact multiple of the alignment of that struct?

Once again, I'm questioning a longstanding belief. Until today, I believed that the alignment of the following struct would normally be 4 and the size would normally be 5... struct example { int ...

1 2 3 4 5 7