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 bitwise shift operators in c programming?
How to compare array with pointer in c?
What are run-time errors?
What is c method?
How many types of operators are there in c?
Why ca not I do something like this?
What language is windows 1.0 written?
What is the difference between declaring a variable and defining a variable?
how logic is used
What is "Hungarian Notation"?
What are the different types of control structures in programming?
What are the 4 data types?
Is c call by value?
What is the explanation for prototype function in c?
Explain what is a const pointer?