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 / subbu
answer is d
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Difference between malloc() and calloc() function?
How can I use a preprocessorif expression to ?
Explain the use of fflush() function?
What 'lex' does?
write a program to print largest number of each row of a 2D array
Can you please explain the difference between strcpy() and memcpy() function?
Differentiate between ordinary variable and pointer in c.
Is c a great language, or what?
How can I ensure that integer arithmetic doesnt overflow?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
Is boolean a datatype in c?
What is sizeof int in c?
What header files do I need in order to define the standard library functions I use?
Why calloc is better than malloc?
Does c have an equivalent to pascals with statement?