What is the output of printf("%d")?
Answer Posted / rahul raj
It will not compile..
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is c++ best used for?
Can the operator == be overloaded for comparing two arrays consisting of characters by using string comparison?
You run a shell on unix system. How would you tell which shell are you running?
Can we declare a base-class destructor as virtual?
What is a responder chain?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
What is #include iostream in c++?
What is the best c++ book for beginners?
What is the use of setprecision in c++?
If you want to share several functions or variables in several files maitaining the consistency how would you share it?
What does new return if there is insufficient memory to make your new object?
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 isdigit c++?
What is a driver program?
What c++ is used for?