4.A function 'q' that accepts a pointer to a character as
argument and returns a pointer to an array of integer can
be declared as:
A)int (*q(char*)) []
B)int *q(char*) []
C)int(*q)(char*) []
D)None of the Above
Answer Posted / ravi
correct ans is option C
that is
int (*q)(char*)[]
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
What is a built-in function in C?
Can 'this' pointer by used in the constructor?
What are the two types of functions in c?
What are qualifiers in c?
Are pointers integers in c?
what is different between auto and local static? why should we use local static?
What are formal parameters?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What is the difference between array and pointer in c?
What is an arrays?
Which one would you prefer - a macro or a function?
What is a example of a variable?
Where is c used?
Explain what is the heap?
explain what is fifo?