What kind of problems does name mangling cause?
No Answer is Posted For this Question
Be the First to Post Answer
What is bool in C++
What are string library functions(syntax).
What is wrong with this statement? std::auto_ptr ptr(new char[10]);
What is the difference between creating an object, using 'new' and using 'malloc'?
Define type casting in C++.
Identify the error in the following program. include<iostream> using namespace std; void main() { int num[]={1,2,3,4,5,6}; num[1]==[1]num ? cout<<"Success" : cout<<"Error"; }
What is the meaning of the following declaration: int *const *const *i?
Execute the qsort () in c/sort() in c++ library or your own custom sort which will sort any type of data on user defined criteria.
Tell me about virtual function
What is C++11?
There is a base class sub, with a member function fnsub(). There are two classes super1 and super2 which are sub classes of the base class sub.if and pointer object is created of the class sub which points to any of the two classes super1 and super2, if fnsub() is called which one will be inoked?
In C++ what is a vtable and how does it work?