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 / s.srinivasulu
correct ans is option C
that is
int (*q)(char*)[]
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What are categories used for in c?
How can I write a function analogous to scanf?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
What is the use of static variable in c?
What is the use of a static variable in c?
What are types of functions?
Write a program to check whether a number is prime or not using c?
Difference between goto, long jmp() and setjmp()?
What are the similarities between c and c++?
What does main () mean in c?
Write a C program to count the number of email on text
Why c is called free form language?
How can you draw circles in C?
What is a 'null pointer assignment' error?
What are type modifiers in c?