What is name mangling/name decoration?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ Interview Questions

What does malloc return in C and C++?

0 Answers   Alter,


Question on Copy constructor.

0 Answers   Alter,


What is partial specialization or template specialization?

0 Answers   Amazon,


Explain why C++ is not purely Object Oriented Language

0 Answers   Aspire,


What is data abstraction? How is it implemented in C++?

0 Answers   Amdocs,






Identify the error in the following program. include<iostream> using namespace std; void main() { int num[]={1,2,3,4,5,6}; num[1]==[1]num ? cout<<"Success" : cout<<"Error"; }

1 Answers  


Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }

1 Answers  


What is static variable and difference between(const char *p,char const *p,const char* const p).

0 Answers   Accenture,


What is an abstract class in C++

0 Answers   SwanSoft Technologies,


Write a program to read the values a, b and c and display x, where x=a/b–c. Test the program for the following values: (a) a = 250, b = 85, c = 25 (b) a = 300, b = 70, c = 70

1 Answers  


C++ Public access specifier instead of Private – What is bad ?

0 Answers  


Write a program to generate the Fibonocci Series in C++.

0 Answers   Accenture,


Categories