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 |
What is oops c?
Explain what is the advantage of a random access file?
Is c a great language, or what?
What is action and transformation in spark?
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
Explain pointer. What are function pointers in C?
related to rdbms query .
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What are the restrictions of a modulus operator?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is size of union in c?
What is structure padding ?