User profile: naveen2525

User info
User name:naveen2525
History
Joined:
Number of posts:24
Latest posts:

MFC Proj Treat WChar_t AS Built in Type issue
I am working with VC++ proj having "Character Set" as "Use Unicode Character Set" and "Treat WChar_t...

vector memory allocation
then vector<Type> *vect is equal to vector<Type*> *vect ?????

vector memory allocation
vector<Type> vect; //allocates vect on stack and each of the Type (using std::allocator) also will b...

difference between erase and clear
vector<int> *vec; allocate memory and suppose vec conatins 10 values then erase(vec->begin(...

pointer deletions
i have class and one member variable ex class a { public: vector<double> * vec; v...