While(1)
{
}
when this loop get terminate is it a infinite loop?
Answer Posted / mahi
it is infinite loop.and it will terminate if we will call
break statement in loop.
Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
What is the scope of an external variable in c?
using for loop sum 2 number of any 4 digit number in c language
Do pointers store the address of value or the actual value of a variable?
what are the facialities provided by you after the selection of the student.
What is the difference between call by value and call by reference in c?
What is malloc return c?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
What is size of union in c?
Explain threaded binary trees?
What is scope and lifetime of a variable in c?
How macro execution is faster than function ?
What does s c mean in text?
What is a rvalue?
Why main function is special give two reasons?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;