While(1)
{
}
when this loop get terminate is it a infinite loop?
Answer Posted / senthilmanikandan
It is finite loop...
if loop reaches Stack Overflow then it will automatically
terminated....
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
Explain how can you check to see whether a symbol is defined?
How many levels deep can include files be nested?
What is a function in c?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What is the difference between a free-standing and a hosted environment?
What is a structure in c language. how to initialise a structure in c?
Is main an identifier in c?
What is c variable?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is identifier in c?
For what purpose null pointer used?
write a program to display all prime numbers
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
What is call by value in c?
Can you tell me how to check whether a linked list is circular?