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
How can you access memory located at a certain address?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What is #include stdlib h?
What is sizeof c?
What are inbuilt functions in c?
Explain is it better to bitshift a value than to multiply by 2?
Is that possible to add pointers to each other?
How to throw some light on the b tree?
Why does everyone say not to use scanf? What should I use instead?
What is "Hungarian Notation"?
Write a program that accept anumber in words
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What is double pointer in c?
Explain 'bus error'?
List some applications of c programming language?