Answer Posted / atul shankhwar
A name clash occurs when a name is defined in more than one place. For example., two different class libraries could give two different classes the same name. If you try to use many class libraries at the same time, there is a fair chance that you will be unable to compile or link the program because of name clashes.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Specify some guidelines that should be followed while overloading operators?
What is the purpose of ios::basefield in the following statement?
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.
Why do we use constructor?
What is the default width for ouputting a long integer using the insertion operator?
How many namespaces are there in c++?
What is an operator function? Describe the function of an operator function?
Can we distribute function templates and class templates in object libraries?
Why is c++ not purely object oriented?
what is a reference variable in C++?
Can class objects be passed as function arguments?
What is singleton pattern in c++?
Does c++ support multilevel and multiple inheritances?
Why do we use the using declaration?
If there are two catch statements, one for base and one for derived, which should come first?