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
Tell us bitwise shift operators?
How can I read in an object file and jump to locations in it?
What is floating point constants?
In c programming language, how many parameters can be passed to a function ?
How to compare array with pointer in c?
How are strings stored in c?
How can I find the modification date of a file?
write a program in c language to print your bio-data on the screen by using functions.
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
How many parameters should a function have?
How do I copy files?
Write a code on reverse string and its complexity.
Which is better pointer or array?
What are variables and it what way is it different from constants?
What is the condition that is applied with ?: Operator?