While(1)
{
}
when this loop get terminate is it a infinite loop?
Answers were Sorted based on User's Feedback
Answer / senthilmanikandan
It is finite loop...
if loop reaches Stack Overflow then it will automatically
terminated....
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / hemas
yes, it is infinite loop.
it will terminate after stack overflow occur.
| Is This Answer Correct ? | 2 Yes | 0 No |
Explain how does free() know explain how much memory to release?
How can I handle floating-point exceptions gracefully?
program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5
Why is structure padding done in c?
Are c and c++ the same?
What are predefined functions in c?
What is #include in c?
What are qualifiers and modifiers c?
Write a program in C to convert date displayed in gregorian to julian date
What is #define used for in c?
Describe the header file and its usage in c programming?
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a