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 / abdur rab
The Prototype should be
int* q ( char* );
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Is c dynamically typed?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
How can I read a binary data file properly?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is difference between main and void main?
Should I learn c before c++?
what is the significance of static storage class specifier?
Can you please explain the difference between malloc() and calloc() function?
How many main () function we can have in a project?
Write a program to print fibonacci series using recursion?
Explain pointer. What are function pointers in C?
Why array is used in c?
Define recursion in c.
Is anything faster than c?
Explain about the constants which help in debugging?