What is the memory allocated by the following definition ?
int (*x)();
Answer Posted / ningappa
The above code is function pointer declaration.So there is
no memory allocated as it is just declaration and no value
is being assigned to it........
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
Explain what is page thrashing?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Explain how can I manipulate strings of multibyte characters?
Describe the modifier in c?
Explain the difference between strcpy() and memcpy() function?
What is a global variable in c?
When should you use a type cast?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
Is there a built-in function in C that can be used for sorting data?
What is array in c with example?
What is void pointers in c?
hi send me sample aptitude papers of cts?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all 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
Explain what are the advantages and disadvantages of a heap?