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


Please Help Members By Posting Answers For Below Questions

What is the scope of an external variable in c?

781


using for loop sum 2 number of any 4 digit number in c language

2000


Do pointers store the address of value or the actual value of a variable?

838


what are the facialities provided by you after the selection of the student.

1939


What is the difference between call by value and call by reference in c?

901


What is malloc return c?

802


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.

1302


What is size of union in c?

769


Explain threaded binary trees?

914


What is scope and lifetime of a variable in c?

789


How macro execution is faster than function ?

884


What does s c mean in text?

837


What is a rvalue?

960


Why main function is special give two reasons?

1226


what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;

2155