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 / ramya
its d.
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
What are the 4 types of unions?
How can I implement a delay, or time a users response, with sub-second resolution?
In a header file whether functions are declared or defined?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What is the purpose of sprintf?
what is the syallabus of computer science students in group- 1?
Why c is a mother language?
Differentiate between null and void pointers.
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What is the importance of c in your views?
What is the basic structure of c?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
How do we open a binary file in Read/Write mode in C?
What are the types of type qualifiers in c?