Submitted Questions

  • STL - Vector

    What is the context of one and two after the following frsgment of code is executed?vector one(7, string("one"));vector two(one.begin() + 2, one.end()-3);

  • Static Constant Function

    Consider a static const function y() that is private member function of a class Y. What do the static and const mean? When could this function be used?