Explain the properties of union. What is the size of a union variable
Describe the order of precedence with regards to operators in C.
What is pass by reference in functions?
What is the difference between typedef and #define?
What is meant by preprocessor in c?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Differentiate between Macro and ordinary definition.
What does %d do?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
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 is a null pointer different from a dangling pointer?
What is function prototype in c language?
What are pointers? What are stacks and queues?
What does == mean in texting?
Differentiate between ordinary variable and pointer in c.