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 non linear data structure in c?
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
what is difference b/w extern & volatile variable??
What is header file definition?
without using arithmatic operator convert an intger variable x into x+1
How many keywords are there in c?
Hi, main() { } Is a user defined function or Built in Functionn
What is the role of && operator in a program code?
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
WHY DO WE USE A TERMINATOR IN C LANGUAGE?