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

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 expect x to be 6 after executing note 1. However, the output is:

4 and 5

Can anyone explain why x does not increment after note 1?

share|improve this question
25  
I'd note that DevC++ uses a very old outdated compiler, you may want to upgrade to a newer IDE, e.g. Codeblocks Eclipse or Visual Studio – Tom J Nowell Nov 22 '11 at 13:55
13  
Wow! DevC++ was considered "old and out of date" when I first started programming in like 2005 – Earlz Nov 22 '11 at 20:50
3  
++x produces the same result as x++, cygwin and gcc 3.4.4. – yehnan Nov 23 '11 at 1:21
2  
@Otiel This was the first link in this weeks Stack Overflow newsletter. That probably accounts for the vote count. – AgentConundrum Nov 23 '11 at 2:56
3  
@Tim Pletzcker Because the first value is the sizeof the variable, and not the variable itself. – Surfbutler Nov 23 '11 at 13:14
show 4 more comments

9 Answers

up vote 344 down vote accepted

From the C99 Standard (the emphasis is mine)

6.5.3.4/2

The sizeof operator yields the size (in bytes) of its operand, which may be an expression or the parenthesized name of a type. The size is determined from the type of the operand. The result is an integer. If the type of the operand is a variable length array type, the operand is evaluated; otherwise, the operand is not evaluated and the result is an integer constant.

share|improve this answer
29  
"If the type of the operand is a variable length array type, the operand is evaluated" wow! I never realized that – Kos Nov 22 '11 at 11:13
3  
what do you mean by variable length array type? That does mean the operand is an array? The code in this case is not an array. Can you clear things up for me? – Neigyl R. Noval Nov 22 '11 at 11:19
25  
A variable length array is an array declared with the size being a value unknown during compilation, for instance if you read N from stdin and make int array[N]. This is one of C99 features, unavailable in C++. – Kos Nov 22 '11 at 11:23
9  
@LegendofCage, in particular this would mean that in something like sizeof(int[++x]) (really, really a bad idea, anyhow) the ++ could be evaluated. – Jens Gustedt Nov 22 '11 at 12:01
2  
See example of VLA in use at http://ideone.com/Q89QP. – pmg Nov 22 '11 at 13:29
show 12 more comments

sizeof is a compile-time operator, so at the time of compilation sizeof and its operand get replaced by the result value. The operand is not evaluated (except when it is a variable length array) at all; only the type of the result matters.

short func(short x) {  // this function never gets called !!
   printf("%d", x);    // this print never happens
   return x;
}

int main() {
   printf("%d", sizeof(func(3))); // all that matters to sizeof is the 
                                  // return type of the function.
   return 0;
}

Output:

2

as short occupies 2 bytes on my machine.

Changing the return type of the function to double:

double func(short x) {
// rest all same

will give 8 as output.

share|improve this answer
8  
Only sometimes - it's compile time if possible. – Martin Beckett Nov 22 '11 at 17:09
1  
it's single clear explanation at this page that points out why – gekannt Nov 22 '11 at 17:24
4  
-1, as this is in contradiction with the acccepted (and correct) answer, and does not cite the standard. – Sam Hocevar Nov 23 '11 at 10:36

sizeof(foo) tries really hard to discover the size of an expression at compile time:

6.5.3.4:

The sizeof operator yields the size (in bytes) of its operand, which may be an expression or the parenthesized name of a type. The size is determined from the type of the operand. The result is an integer. If the type of the operand is a variable length array type, the operand is evaluated; otherwise, the operand is not evaluated and the result is an integer constant.

In short: variable length arrays, run at runtime. (Note: Variable Length Arrays are a specific feature -- not arrays allocated with malloc(3).) Otherwise, only the type of the expression is computed, and that at compile time.

share|improve this answer
Even though this was slightly after the accepted answer in submission time, it was close enough, and the answer probably took long enough to answer, and is correct, so you get a vote from me. – Paul Wagland Nov 29 '11 at 8:59

sizeof is a compile-time builtin operator and is not a function. This becomes very clear in the cases you can use it without the parenthesis:

(sizeof x)  //this also works
share|improve this answer
would sizeof((i++)) work? – Gaotter Nov 22 '11 at 13:56
2  
@Gaotter: yes, the extra parenthesis are ignored: codepad.org/fhdjYhzV – André Paramés Nov 22 '11 at 15:19
THIS is interesting. – surfasb Nov 23 '11 at 6:25
But how is this an answer to the question? – phresnel Nov 23 '11 at 12:15
4  
@phresnel: This is just to make it clear that sizeof is "weird" and is not subject to the rules of normal functions. I edited the post anyway to remove the possible confusion with normal runtime operators like (+) and (-) – missingno Nov 23 '11 at 12:25

As the operand of sizeof operator is not evaluated, you can do this:

int f(); //no definition, which means we cannot call it

int main(void) {
        printf("%d", sizeof(f()) );  //no linker error
        return 0;
}

Online demo : http://ideone.com/S8e2Y

That is, you don't need define the function f if it is used in sizeof only. This technique is mostly used in C++ template metaprogramming, as even in C++, the operand of sizeof is not evaluated.

Why does this work? It works because the sizeof operator doesn't operate on value, instead it operates on type of the expression. So when you write sizeof(f()), it operates on the type of the expression f(), and which is nothing but the return type of the function f. The return type is always same, no matter what value the function would return if it actually executes.

In C++, you can even this:

struct A
{
  A(); //no definition, which means we cannot create instance!
  int f(); //no definition, which means we cannot call it
};

int main() {
        std::cout << sizeof(A().f())<< std::endl;
        return 0;
}

Yet it looks like, in sizeof, I'm first creating an instance of A, by writing A(), and then calling the function f on the instance, by writing A().f(), but no such thing happens.

Demo : http://ideone.com/egPMi

Here is another topic which explains some other interesting properties of sizeof:

share|improve this answer

The execution cannot happen during compilation. So ++i/i++ will not happen. Also sizeof(foo()) will not execute the function but return correct type.

share|improve this answer
1  
"The execution cannot happen during compilation." what do you mean? – curiousguy Nov 23 '11 at 0:58
1  
Compilation will only create object code... The object code will be executed only when the user executes the binary. As sizeof happens at compile time assuming i++ will increment is wrong. – rakesh Nov 23 '11 at 7:35
"As sizeof happens at compile time" you mean: "as sizeof is a compile time constant expression"? – curiousguy Nov 23 '11 at 8:18
Like "#define" happens during pre-processing, similarly sizeof will happen at compile time. During compilation all the type information is available so sizeof is evaluated then and there during compilation and value is replaced. As already mentioned by @pmg "From the C99 Standard" before. – rakesh Nov 23 '11 at 9:51
"sizeof will happen at compile time" for something that is not a variable length array – curiousguy Nov 23 '11 at 23:49

sizeof() function gives size of the data-type only, it does not evaluate inner elements......

share|improve this answer
sizeof is not a function. It's an unary operator. – milleniumbug Apr 21 at 12:44

x++ as far as i know (in programming concepts) does gives off the value first before incrementing .you should have tried ++x so it would increment the variable first before giving off the value

share|improve this answer
I'm not the one who downvoted you, but I think this is because you didn't bother to try it yourself. Trying it with both expressions gives the same result. – OmarOthman Nov 24 '11 at 9:02

I may be wrong, because I'm not a c++ programmer. But it looks like you have used the postfix increment x++, you should use the prefix ++x if you want to see a change in the output. Go into debug mode, the number should still change to 6. Or test it by putting the ++ in front of x.

Once you have done that, consider checking some tutorials, I would recommend some, but since I'm not a c++ programmer I don't consider my suggestions valid.

share|improve this answer
3  
Won't work: as the other answers explain, the expression isn't evaluated. Therefore the debugger won't see anything. Also, the question is about C. C++ has similar but not identical rules for sizeof. – MSalters Nov 22 '11 at 22:58
1  
@Blue: you can test small snippets at ideone, for example ideone.com/VhS33 – pmg Nov 22 '11 at 23:12
@pmg Thanks for ideo.com – jyzuz Mar 23 at 22:37

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.