Explain following declaration
int *P(void);
and
int (*p)(char *a);
Answer Posted / tibu
int *p(void) - says this is function with null parameter
and returns a pointer to an integer.
int (*p)(char *a) - says this is function with a pointer to
a char a as parameter and returns a pointer to an integer.
| Is This Answer Correct ? | 19 Yes | 19 No |
Post New Answer View All Answers
Explain how are 16- and 32-bit numbers stored?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Explain what is the concatenation operator?
How is a pointer variable declared?
What are pointers really good for, anyway?
Are there any problems with performing mathematical operations on different variable types?
Are pointers integer?
What is the easiest sorting method to use?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Why is event driven programming or procedural programming, better within specific scenario?
Explain threaded binary trees?
What is the heap?
What is the ANSI C Standard?
What does the function toupper() do?
Write a code to generate a series where the next element is the sum of last k terms.