Simple answer: A variable modified array at file scope is not possible.
Detailed:
Make it a compile time integral constant expression, since the array length must be specified at the compile time.
Like this:
#define a 6
#define b 3
Or, follow the C99 standard. and compile like for GCC.
gcc -Wall -std=c99 test.c -o test.out
The problem here is a variable-length array with providing length may not be initialized, so you are getting this error.
Simply
static int a = 6;
static int b = 3;
void any_func()
{
int Hello [a][b]; // No need of initialization. No static array means no file scope.
}
Now use a for loop or any loop to fill the array.
For more information, just a demo:
#include <stdio.h>
static int a = 6;
int main()
{
int Hello[a] = {1, 2, 3, 4, 5, 6}; // See here initialization of the array 'Hello'. It's in the function
// Scope, but still an error
return 0;
}
Compile
cd ~/c
clang -std=c99 vararr.c -o vararr
Output:
vararr.c:8:11: error: variable-sized object may not be initialized
int Hello[a]={1,2,3,4,5,6};
^
1 error generated.
If you remove static and provide initialization then it will generate the error as above.
But if you keep static as well as initialization then it will still be an error.
But if you remove the initialization and keep static
, the below error will come.
error: variable length array declaration not allowed at file scope
static int Hello[a];
^ ~
1 error generated.
So a variable-length array declaration is not allowed at file scope, so make it function or block scope inside any function (but remember making it function scope must remove initialization)
Note: Since it's C
tagged, making a
and b
as const
won't help you, but in C++
const
will work fine.
variably modified ‘child’ at file scope
" – Cottier