Hi,
I am sure that the size of c style arrays must be known at compile tim
but the code below compiles. I am using g++ 4.2.4 and really confused!
Code:
int main(){
int N = 5;
int x[N];
x[2] = 3;
}