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
What is the purpose of main( ) in c language?
What is the advantage of an array over individual variables?
What is an endless loop?
What are the types of type specifiers?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What is the difference between the expression “++a” and “a++”?
How is a structure member accessed?
define string ?
How do you use a 'Local Block'?
What is methods in c?
Explain what is meant by 'bit masking'?
What are keywords in c with examples?
When the macros gets expanded?
How to declare a variable?
What is dangling pointer in c?