I\'ve been using C++ for a short while, and I\'ve been wondering about the new keyword. Simply, should I be using it, or not?
1) With the new keywo
Without the new keyword you're storing that on call stack. Storing excessively large variables on stack will lead to stack overflow.
new