Which of the following is not an infinite loop ?
a.while(1){
....
}
b.for(;;){
...
}
c.x=0;
do{
/*x unaltered within theloop*/
...
}while(x==0);
d.# define TRUE 0
...
while(TRUE){
....
}
Answer Posted / deepa
d
| Is This Answer Correct ? | 44 Yes | 2 No |
Post New Answer View All Answers
largest Of three Number using without if condition?
What is structure and union in c?
What is output redirection?
What will be the outcome of the following conditional statement if the value of variable s is 10?
Are pointers integer?
can anyone suggest some site name..where i can get some good data structure puzzles???
Why do we write return 0 in c?
What is declaration and definition in c?
What is difference between far and near pointers?
What are the keywords in c?
What is #define in c?
What is realloc in c?
What is a node in c?
write a program to find the given number is prime or not
What is the process to create increment and decrement stamen in c?