Answer Posted / achal ubbott
It is by name mangling that a c++ compiler is able to
support function overloading.It is the way of
differentiating functions based on their name,number and
order and type of parameters. Unfortunately ISO has not set
any standard procedure for mangling names. So different c++
compiler vendors implement it in different ways.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Which software is used to run c++ program?
What is else syntax in c++?
Is there any function that can skip certain number of characters present in the input stream?
Write a recursive program to calculate factorial in c++.
What is the use of function pointer?
What is dev c++ used for?
You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()
Is there a c++ certification?
Mention the ways in which parameterized can be invoked.
Explain function overloading and operator overloading.
What do you mean by volatile and mutable keywords used in c++?
What is an adaptor class or wrapper class in c++?
write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
If dog is a friend of boy and boy is a friend of house, is dog a friend of house?
Why do we use the using declaration?