Q:

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

0

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


  1. Int *q(char *)[ ]
  2. nt (*q) (char *)[ ]
  3. int (*q (char*) )[ ]
  4. None of the above

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

int (*q (char*) )[ ]

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now
correct syntax to declare a 3 dimensional array us... >>
<< what will be the output of the following program...