What is infinite loop?
Answer / Aman Parihar
An infinite loop in C is a loop that does not terminate. It continues to execute its statements indefinitely until the program is forcefully stopped. This can happen when the loop condition never evaluates to false.
| Is This Answer Correct ? | 0 Yes | 0 No |
write a program in C to swap two variables
What are volatile variables?
What are dangling pointers in c?
What does c mean in basketball?
What is macro?
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
Is c language still used?
Explain what are binary trees?
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
write a program to swap bits in a character and return the value prototype of function char fun (char a, charb flag c) where fun returns a char, char a is a the value char b is the bit to be changed and flag c is the bit value for eg: x=fun(45,7,0) since 45 is 0010 0101 and ow x should contain the value 65 (0110 0101)
1 Answers Bosch, College School Exams Tests,
Is c is a low level language?