Is there something that we can do in C and not in C++?
Answer Posted / avni
we can use printf in c but not in c++
| Is This Answer Correct ? | 4 Yes | 19 No |
Post New Answer View All Answers
How do you add an element to a set in c++?
When one must use recursion function? Mention what happens when recursion functions are declared inline?
Is java easier than c++?
What is dynamic and static typing?
What is an adjust field format flag?
How can a struct in c++ differs from a struct in c?
If I is an integer variable, which is faster ++i or i++?
How does work in c++?
What is a wchar_t in c++?
What is class syntax c++?
What is switch case in c++ syntax?
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.
Is c++ a high level language?
What are the stages in the development cycle?
What are the types of pointer?