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
why we wont use '&' sing in aceesing the string using scanf
How can I open a file so that other programs can update it at the same time?
How we can insert comments in a c program?
What are global variables?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What is a shell structure examples?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
Tell us something about keyword 'auto'.
Why is %d used in c?
What is the difference between class and object in c?
Give the rules for variable declaration?
Explain what is the benefit of using enum to declare a constant?
How to declare pointer variables?
Not all reserved words are written in lowercase. TRUE or FALSE?
what does static variable mean?