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 #include preprocessor?
Explain how can I avoid the abort, retry, fail messages?
hi send me sample aptitude papers of cts?
What is adt in c programming?
What is uint8 in c?
How can I do peek and poke in c?
What is the benefit of using an enum rather than a #define constant?
What is #include called?
What are the string functions? List some string functions available in c.
Write a program to check armstrong number in c?
Why main is not a keyword in c?
What are local variables c?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
What's the right way to use errno?
Can we declare function inside main?