What compiler was used?
Answers were Sorted based on User's Feedback
Answer / varsha vilas kalebag
compiler was used to find out the errors present in programm
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / thukaram
Microsoft VC++ compiler ,Microsoft.NET compiler
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / saleban
compiler is used compile ur program takes source of the
program doing daignosis handling the errors of the
program and make program that computer can undersand then
ouputed object program during compiling there is some
phases
lexical analysis,
parsing,semantics,simlification,optimization, code
generator,
if all success in ur program u have efficent program
(corecct)
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / neel pooja
they asked what compiler was used that is, the compiler
used in the beginning or used in the past
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / puspanjali nayak
it use compile the programm.find out the result
| Is This Answer Correct ? | 0 Yes | 2 No |
What is #include c++?
Difference between a homogeneous and a heterogeneous container
What is a pointer how and when is it used?
Why do we need c++?
How to declare a pointer to an array of integers?
What is meant by a delegate?
Why do we use string in c++?
Explain friend class?
What is low level language in simple words?
What is c++ code?
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
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.