Answer Posted / venu gopal raju
array is nothing but an array(a set ) of constants of
similar data type .
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What are the implicit member functions of class?
Program to check whether a word is a sub-string or not of a string typed
What are the rules for naming an identifier?
How does work in c++?
What are the benefits of operator overloading?
Explain what happens when a pointer is deleted twice?
What is stream and its types in c++?
What does new return if there is insufficient memory to make your new object?
What are put and get pointers?
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.
What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.
When there is a global variable and local variable with the same name, how will you access the global variable?
What is format for defining a structure?
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
What is the auto keyword good for in c++?