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
When should we use pointers in a c program?
What are the types of macro formats?
What is a shell structure examples?
What is the difference between malloc() and calloc()?
What is the use of gets and puts?
how to write a c program to print list of fruits in alpabetical order?
Why is c called c?
Describe dynamic data structure in c programming language?
Why #include is used in c language?
What are local variables c?
Is main a keyword in c?
What is volatile, register definition in C
Explain union. What are its advantages?
How to find a missed value, if you want to store 100 values in a 99 sized array?
What is the default value of local and global variables in c?