Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have read that sizeof operator in C is interpreted at compile time and since at compile time compiler knows the array size and its type,sizeof is abled to compute the number of bytes occupied by array.But how is sizeof working for the following code :

 #include<stdio.h>
 #include<string.h>
 int main()
 {
    int n;
    scanf("%d",&n);
    int a[n];
    int s=sizeof(a);
    printf("%d",s);
    return 0;
 }

Here array size is not known at compile time,then how is it working properly ?

share|improve this question
possible duplicate of Using sizeof with a dynamically allocated array – Matt Ball Apr 9 '12 at 19:06
2  
Variable length arrays are an exception, for them, sizeof is evaluated at run time, not at compile time. – Daniel Fischer Apr 9 '12 at 19:06
1  
@MДΓΓБДLL No, that one is about malloced stuff, not about VLAs. – Daniel Fischer Apr 9 '12 at 19:07
2  
@MДΓΓБДLL: Your possible duplicate is dealing with a different situation (malloc(), not a VLA, variable length array). – Jonathan Leffler Apr 9 '12 at 19:07

6 Answers

up vote 9 down vote accepted

sizeof is always computed at compile time in C89. Since C99 and variable length arrays, it is computed at run time when a variable length array is part of the expression in the sizeof operand.

Same for the evaluation of the sizeof operand: it is not evaluated in C89 but in C99 if the operand is of variable length array type it is evaluated. For example:

int n = 5;
sizeof (int [n++]); 

// n is now 6
share|improve this answer
Thanks got it now. – code_hacker Apr 10 '12 at 5:03

Since you are applying sizeof to a variable-length array, whose size is not fully known at compile time, the compiler must generate code to do part of it at runtime.

gcc 4.6.3's high level optimizers convert the code you showed to

scanf ("%d", &n);
t12 = (long unsigned int) n;
t13 = t12 * 4;
__builtin_alloca (t13);
t16 = (unsigned int) t12;
t17 = t16 * 4;
s18 = (int) t17;
printf ("%d", s18);

Does that explain what is going on under the hood? (Don't be put off by the silly-looking number of temporary variables -- that's an artifact of the program being in static single assignment form at the point where I asked for an intermediate-code dump.)

share|improve this answer

In that case, sizeof() is evaluated at run time. The compiler, because it knows that the size of a is based on the value of n at the time of the array declaration, generates code to use the appropriate value of n to return a sensible value for sizeof().

In C99, not all uses of sizeof() can be completely evaluated at compile time and reduced to a runtime constant.

share|improve this answer
Note that the compiler might use an old value for n; for example int n = 5; char a[n]; n = 10; return sizeof(a); always returns 5, not 10. – Dietrich Epp Apr 9 '12 at 19:08
That's right, I'll tweak my answer. – Greg Hewgill Apr 9 '12 at 19:10
@greg no, this is a VLA – David Heffernan Apr 9 '12 at 19:10
@DavidHeffernan: I understand, hopefully my updated answer is more clear. – Greg Hewgill Apr 9 '12 at 19:11
doh I can't believe I typed "compile" when I meant "run". Too early in the morning. :) – Greg Hewgill Apr 9 '12 at 19:11
show 1 more comment

I have read that sizeof operator in C is interpreted at compile time

sizeof is determined at compile time in all cases apart from for VLAs. For a VLA, sizeof is evaluated at runtime.

share|improve this answer

From the C99 standard:

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.

share|improve this answer

Regardless of whether sizeof is computed at compile time or runtime (or more formally speaking, whether its result is an integer constant expression), the result of sizeof is purely based on the type of its argument and not any hidden data accompanying the variable-length array itself. Of course when sizeof is applied to a variably-modified type, the generated program must keep track of that size somewhere. But it might simply recompute it if the expression was simple enough and the variables it originally derived the length from cannot have changed. Or, it could store the size of the type somewhere (essentially in a hidden local variable), but this would not be connected to the VLA object in any observable way (for example, if you pass a pointer to the first element of the VLA to another function, that pointer cannot be used to recover the VLA length).

share|improve this answer

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.