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){
....
}
Post New Answer View All Answers
How to set file pointer to beginning c?
Explain bit masking in c?
What is the best way to store flag values in a program?
How do you view the path?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What are different types of operators?
Explain logical errors? Compare with syntax errors.
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
What is null in c?
In C language what is a 'dangling pointer'?
what are non standard function in c
Why #include is used in c language?
What are keywords c?
How is null defined in c?