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

g++ allows Variable Length Arrays (VLA) as an extension. The results of sizeof operator on VLAs are interesting:

int main ()
{
  char size = 20, a[10], b[size];
  cout<<"sizeof(a) = "<<sizeof(a)<<endl;  // sizeof(a) = 10, (can be used as template param)
  cout<<"sizeof(b) = "<<sizeof(b)<<endl;  // sizeof(b) = 20 !! (can't used be as template param)
}

In case of sizeof(b), is g++ not following the standard where sizeof is evaluated only at compile time? Is sizeof overloaded?

share|improve this question
The parenthesis are not part of the operator name. It's sizeof, not sizeof(). – unwind Jan 3 '12 at 16:41

3 Answers

up vote 2 down vote accepted

VLAs are an exception to the rule that the operand of sizeof is not evaluated, as specified in C99, 6.5.3.4/2:

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

VLAs were introduced in C99. In C99, sizeof(vla) is not a compile-time constant, but takes into account the run-time size of the array.

gcc/g++ allow VLAs in non-C99 code, as an extension. When doing so, the compilers follow the C99 semantics. This is what you're observing.

share|improve this answer

Variable Length Arrays are a part of C99, which is not in C++. Gcc allows them as an extension in C++ using the behaviour from C99, which does indeed say that sizeof returns the actual size of the array (and is therefore evaluated at runtime). The wikipedia article about sizeof gives a nice summary of its behaviour.

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.