What problem does the namespace feature solve?
Answer / nimish singh
Multiple providers of libraries might use common global identifiers causing a name collision when an application tries to link with two or more such libraries. The namespace feature surrounds a library's external declarations with a unique namespace that eliminates the potential for those collisions.
This solution assumes that two library vendors don't use the same namespace identifier, of course.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is there something that we can do in C and not in C++?
How can you say that a template is better than a base class?
Will a catch statement catch a derived exception if it is looking for the base class?
Explain the advantages of using friend classes.
Can comments be longer than one line?
Explain what are the sizes and ranges of the basic c++ data types?
Tell me can a pure virtual function have an implementation?
Is c++ a software?
What is virtual destructor ans explain its use?
A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.
Which operator cannot be overloaded c++?
What do you mean by enumerated data type?