What is Name Decoration?

Answers were Sorted based on User's Feedback



What is Name Decoration?..

Answer / nishikant sahu

While function overloading, to identify the exact function
compiler change the name of all overloaded function with the
help of calling convention.its aka name mangling but NM
depends complier to compiler.

Is This Answer Correct ?    5 Yes 2 No

What is Name Decoration?..

Answer / murali

Giving aliases to long_difficult_namespace with simple_name

( i think )

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More C++ General Interview Questions

What is iterator in c++?

0 Answers  


What do you mean by ‘void’ return type?

0 Answers  


Explain "const" reference arguments in function?

0 Answers  


what Is DCS ? what i will get benefit when i did?

0 Answers  


Describe the syntax of single inheritance in C++?

0 Answers   Fidelity,






What is the difference between a type-specific template friend class and a general template friend class?

0 Answers  


Why do we use structure in c++?

0 Answers  


int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30

2 Answers   AIG, Quark,


Difference between a homogeneous and a heterogeneous container

0 Answers  


Which is not a valid keyword a) public b) protected c) guarded

0 Answers  


What is protected inheritance?

0 Answers  


What information can an exception contain?

0 Answers  


Categories