I typed this code in VS Community:
#include <iostream>
using namespace std;
int main(){
int N;
cin >> N;
int T[N];
return 0;
}
and it gives me these errors :
C2131 expression did not evaluate to a constant
Error (active) expression must have a constant value
in line 7 (int T[N];). I really don't know what's going on.