what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / abdur rab
It goes into an infinite loop.
The compiler will check only the syntax, it is upto the
programmer to implement correct logic.
other than initialization, c is always 1000 and there is no
condition to be break the loop
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
is it possible to create your own header files?
How many identifiers are there in c?
write a program for the normal snake games find in most of the mobiles.
What is pointers in c with example?
Why c is called top down?
What is pivot in c?
What is the value of h?
How to write c functions that modify head pointer of a linked list?
What is difference between array and pointer in c?
Can we add pointers together?
What does void main return?
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
Is void a keyword in c?
what are bit fields? What is the use of bit fields in a structure declaration?
What is the best way to comment out a section of code that contains comments?