what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / srsabariselvan
infinite loop.
and print the character associated with the 1000,1001,1002,....
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is void c?
Why are algorithms important in c program?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What is the purpose of & in scanf?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
how to build a exercise findig min number of e heap with list imlemented?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Are global variables static in c?
how to write a c program to print list of fruits in alpabetical order?
Why cant I open a file by its explicit path?
Is it fine to write void main () or main () in c?
What is the use of #define preprocessor in c?
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 the use of #include in c?