Answer Posted / lilly
0.0111
| Is This Answer Correct ? | 22 Yes | 24 No |
Post New Answer View All Answers
Write a program to swap two numbers without using the third variable?
What is dangling pointer in c?
What are the rules for the identifier?
In c language can we compile a program without main() function?
What is sizeof in c?
Explain the difference between structs and unions in c?
What is multidimensional arrays
How would you use the functions fseek(), freed(), fwrite() and ftell()?
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
How can I rethow can I return a sequence of random numbers which dont repeat at all?
Explain can you assign a different address to an array tag?
What is a char in c?
What are categories used for in c?
#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 a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?