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 iterator in c++?
What do you mean by ‘void’ return type?
Explain "const" reference arguments in function?
what Is DCS ? what i will get benefit when i did?
Describe the syntax of single inheritance in C++?
What is the difference between a type-specific template friend class and a general template friend class?
Why do we use structure in c++?
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
Difference between a homogeneous and a heterogeneous container
Which is not a valid keyword a) public b) protected c) guarded
What is protected inheritance?
What information can an exception contain?