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 |
What is the difference between equal to (==) and assignment operator (=)?
What is a flag in c++?
Explain working of printf?
What does scope resolution operator do?
Write about the stack unwinding?
Explain about vectors in c ++?
What is new in c++?
What are different types of typecasting supported by C++
What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal
how is returning structurs from functions?Show an eg?
What is the difference between the functions memmove() and memcpy()?
What is polymorphism & list its types in c++?