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
Give basis knowledge of web designing ...
What is a pointer variable in c language?
Is c dynamically typed?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Write a simple code fragment that will check if a number is positive or negative.
I need a sort of an approximate strcmp routine?
Why is not a pointer null after calling free?
Can you write the algorithm for Queue?
What is wrong with this program statement? void = 10;
What is wild pointer in c with example?
How are strings stored in c?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
How do I determine whether a character is numeric, alphabetic, and so on?
How will you divide two numbers in a MACRO?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)