When does a name clash occur?



When does a name clash occur?..

Answer / 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

More C++ General Interview Questions

What is auto type c++?

0 Answers  


What is heap sort in c++?

0 Answers  


what are the iterator and generic algorithms.

0 Answers  


what are Access specifiers in C++ class? What are the types?

0 Answers  


this is to swap to strings....but in output the whole strings are swapped leaving first as it is...why it is so #include<iostream.h> int main() { char a[]="ajeet"; char b[]="singh"; long x=*a; long y=*b; cout<<x<<":"<<y; x=x+y; y=x-y; x=x-y; *a=x; *b=y; cout<<x<<":"<<y; cout<<&a<<endl; cout<<&b<<endl; }

1 Answers  






How can I improve my c++ skills?

0 Answers  


What does asterisk mean in c++?

0 Answers  


What is the difference between an external iterator and an internal iterator?

0 Answers  


What are the types of container classes?

0 Answers  


What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random

0 Answers  


Can you Mention some Application of C/C++?

0 Answers  


In the derived class, which data member of the base class are visible?

0 Answers  


Categories