While(1)
{

}
when this loop get terminate is it a infinite loop?

Answer Posted / senthilmanikandan

It is finite loop...
if loop reaches Stack Overflow then it will automatically
terminated....

Is This Answer Correct ?    8 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are disadvantages of C language.

891


How many keywords (reserve words) are in c?

828


What is sizeof int in c?

838


Define Array of pointers.

849


What are pointers?

876


What does calloc stand for?

858


What does s c mean in text?

848


What is the purpose of scanf() and printf() functions?

938


Explain what is meant by 'bit masking'?

893


What do the functions atoi(), itoa() and gcvt() do?

935


Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.

3417


Can the “if” function be used in comparing strings?

801


Define circular linked list.

802


Between macros and functions,which is better to use and why?

1825


If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402

3594