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
Write the Program to reverse a string using pointers.
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Differentiate between the expression “++a” and “a++”?
please send me the code for multiplying sparse matrix using c
What are conditional operators in C?
What is data structure in c language?
What does %c mean in c?
What is printf () in c?
diff between exptected result and requirement?
write a program to rearrange the array such way that all even elements should come first and next come odd
What are different storage class specifiers in c?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above