What is the output of printf("%d")?
Answer Posted / narendra singh
ans.is
get ans zero
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
List the types of polymorphism in c++?
How do you generate a random number 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.
Which programming language is best?
Is C++ case sensitive a) False b) Depends on implementation c) True
Why do we use double in c++?
What are compilers in c++?
What is dev c++ used for?
How is modularity introduced in C++?
Can manipulators fall in love?
Can we delete this pointer in c++?
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
What is the difference between a definition and a declaration?
What is auto used for in c++?
What is pointer with example?