Answer Posted / som shekhar
In simple terms Name mangling is name decoration. Compiler
gives different names to the functions and that is why
function overloading is possible.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a singleton class c++?
What is the use of 'this' pointer?
Do we have to use initialization list in spite of the assignment in constructors?
Define whitespace in C++.
What is the error in the code below and how should it be corrected?
Why is standard template library used?
Write a function to perform the substraction of two numbers. Eg: char N1="123", N2="478", N3=-355(N1-N2).
How much is c++ certification?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
What is private public protected in c++?
What is size_type?
What is the difference between global variables and local variable
Can you Mention some Application of C/C++?
Why was c++ made?
What is doubly linked list in c++?