I\'ve got a method that receives a variable int. That variable constitutes an array size (please, don\'t offer me a vector). Thus, I need to init a const int inside my metho
If you're using arrays it's a good idea to encapsulate them:
template class Vector { //... };
The standard library comes with an implementation: std::vector