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
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What is masking?
What are c header files?
What is a structure member in c?
How can you find out how much memory is available?
What is the total generic pointer type?
What is substring in c?
What are pointers in C? Give an example where to illustrate their significance.
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Explain what is page thrashing?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is an identifier?
What is the advantage of using #define to declare a constant?
What is a rvalue?
How many types of errors are there in c language? Explain