Answer Posted / angad kumar
'# INCLUDE " "' IS THE PREPROCESSOR DIRECTIVES It creates a
link to the library stdio.h and <iostream.h >.
| Is This Answer Correct ? | 23 Yes | 3 No |
Post New Answer View All Answers
Can I learn c++ without c?
Explain the difference between c++ and java.
What are arrays c++?
What are static variables?
What is string in c++ programming?
What is lazy initialization in c++?
Write a recursive program to calculate factorial in c++.
Which programming language is best?
What are virtual constructors/destructors?
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 data binding in c++?
What is the C-style character string?
Is it possible to use a new for the reallocation of pointers ?
What is a null object in c++?
When does a name clash occur in c++?