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 / rani
int *q(char*)[] can be a proper answer
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Explain bitwise shift operators?
In C, What is the #line used for?
What is getch () for?
Difference between pass by reference and pass by value?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
When should a far pointer be used?
What is self-referential structure in c programming?
What is the difference between exit() and _exit() function?
What is time complexity c?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
How pointers are declared?
What is the purpose of the preprocessor directive error?
What is the basic structure of c?
Write a program to swap two numbers without using a temporary variable?