what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / sanjiv
11
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Why does the call char scanf work?
Why c is a mother language?
Explain about the constants which help in debugging?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. Sequence of take-off is the sequence of addition to the waitlist
Explain what is the benefit of using an enum rather than a #define constant?
What is the difference between malloc() and calloc() function in c language?
Implement bit Array in C.
How reliable are floating-point comparisons?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Are pointers really faster than arrays?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
What is d scanf?
What are types of functions?