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
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Why is sprintf unsafe?
What is array of pointers to string?
How many main () function we can have in a project?
What are dangling pointers? How are dangling pointers different from memory leaks?
What is the difference between array and pointer in c?
What are directives in c?
Not all reserved words are written in lowercase. TRUE or FALSE?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What do you mean by a local block?
What is call by reference in functions?
What are data types in c language?
What does volatile do?
What is define directive?
Can we access the array using a pointer in c language?