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 a file operation in C with an example.
writ a program to compare using strcmp VIVA and viva with its output.
How does placing some code lines between the comment symbol help in debugging the code?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
write a program to concatenation the string using switch case?
The difference between printf and fprintf is ?
Why n++ execute faster than n+1 ?
Does * p ++ increment p or what it points to?
What are the different types of data structures in c?
What are c header files?
Can math operations be performed on a void pointer?
How do you list a file’s date and time?
Explain how do you override a defined macro?
Explain the binary height balanced tree?
how can f be used for both float and double arguments in printf? Are not they different types?