What is Name Decoration?
Answers were Sorted based on User's Feedback
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 |
Answer / murali
Giving aliases to long_difficult_namespace with simple_name
( i think )
| Is This Answer Correct ? | 1 Yes | 2 No |
What is object oriented programming (oop)?
How would you use the functions memcpy(), memset(), memmove()?
How can we read/write Structures from/to data files?
What are advantages of C++ when comparing with C?
18 Answers HP, iGate, TCS,
Why preincrement operator is faster than postincrement?
How do you find out if a linked-list has an end?
What is helper in c++?
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;
What is the cout in c++?
what do you mean by volatile variable?
What is atoi in c++?
Comment on assignment operator in c++.