Is vector<int[3]> a;
valid C++ ?
Can this cause problems?
Is vector<int[3]> a;
valid C++ ?
Can this cause problems?
I tried just now...
It can't be compiled successfully on VS.
But if I only code vector<int[3]> a;
, and don't use this vector, it can be compiled successfully.