what is difference between internet and Internet?
Answer Posted / onkar tiwari
I am agree with ans 4
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What are keywords in c++?
What is the full form nasa?
What does it mean to declare a destructor as static?
When is the copy constructor called?
Why do we use classes in c++?
Define a conversion constructor?
On throwing an exception by the animal constructor in p = new animalq, can memory leak occur?
Write about the retrieval of n number of objects during the process of delete[]p?
Why we use #include conio h in c++?
What is an associative container in c++?
What does it mean to declare a member variable as static?
How would you implement a substr() function that extracts a sub string from a given string?
Can member data be public?
What are protected members in c++?
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.