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 |
If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?
What parameter does the constructor to an ofstream object take?
What is an object in c++?
What is dynamic and static typing?
What does ctime() do?
How do I open binary files?
How do you define a class in c++?
What is the type of 'this' pointer?
What will i and j equal after the code below is executed? Explain your answer.
. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?
How should runtime errors be handled in c++?
What do you know about friend class and friend function?