I am a bit confused about array declaration in C. I know that it's possible to do this:
int a[20]; // Reserved space for 20 int array
int b[] = {32, 431, 10, 42}; // Length in square brackets is auto-calculated
int *c = calloc(15, sizeof(int)); // Created a pointer to the dynamic int array
But is it possible to do this?:
int my_array[sizeof(int) * 5];
Is it a valid code, or an array length should be a constant expression (in ANSI C)?
sizeof(int) * 5
used in the example statement in your question:int my_array[sizeof(int) * 5];
, is a constant expression, so although it does not serve as a good illustration of your primary question, it is legal syntax for C array declaration.With the exception of
C99
, variable length arrays are optional in most recent C compiler implementations. (InC99
inclusion of VLA is mandated.)So, if your compiler supports VLA, the following are an examples:
Note: that VLAs cannot be initialized in any form during its declaration. As with all variables though it is a good idea that it be initialized in subsequent statements by explicitly assigning values to its entire region of memory.
Passing VLAs as function arguments is not included within the scope of your question, but should it be of interest, there is a good discussion on that topic here.