jjjones42003
2009-04-16 20:03:21 UTC
int a[10];
but this gives me a compile error?
int n = 10;
int a[n];
Is there any way to get around this? In particular, I want to make a structure that contains two fields:
int size;
int a[size];
Can this be done?