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 are the different file extensions involved when programming in c?
What is the best style for code layout in c?
What is the purpose of the preprocessor directive error?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is the difference between c and python?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
What is difference between stdio h and conio h?
Simplify the program segment if X = B then C ← true else C ← false
Explain how do you search data in a data file using random access method?
Why isnt there a numbered, multi-level break statement to break out
Explain data types & how many data types supported by c?
Do you know the use of fflush() function?
What is meant by preprocessor in c?
Explain why C language is procedural?
Write a program to reverse a string.