While(1)
{
}
when this loop get terminate is it a infinite loop?
Answer Posted / raj
it is infinite loop
while(1)
{
break;
}
Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
Explain what is a 'locale'?
How to compare array with pointer in c?
What does %c mean in c?
What is the difference between a string and an array?
What is the difference between new and malloc functions?
What is use of null pointer in c?
What is the size of enum in bytes?
Explain Function Pointer?
which is an algorithm for sorting in a growing Lexicographic order
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Explain bit masking in c?
What is a nested formula?
How we can insert comments in a c program?
How can I prevent another program from modifying part of a file that I am modifying?
What is the main difference between calloc () and malloc ()?