Answer Posted / naresh lingampally
`\0' (ascii NUL, which has value zero)
"" no spaces nothing implemented
.
I am confused can any one explain !!
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is a global variable in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
How many types of operator or there in c?
What library is sizeof in c?
How can I convert a number to a string?
When should a far pointer be used?
What is the difference between array and structure in c?
How can a program be made to print the line number where an error occurs?
What is 'bus error'?
What is the Purpose of 'extern' keyword in a function declaration?
How would you obtain the current time and difference between two times?
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 are the advantages of using Unions?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
State the difference between x3 and x[3].