Answer Posted / karthik
using the function
gets(variable)
Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
Is c compiled or interpreted?
What is a substring in c?
What is function prototype?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What is abstract data structure in c?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
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 main difference between calloc () and malloc ()?
What is call by reference in functions?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is difference between structure and union with example?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Explain what does the function toupper() do?
Are comments included during the compilation stage and placed in the EXE file as well?
Are negative numbers true in c?