337) 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
Answer is:
int (*q (char*) )[ ]
Related C Programming MCQ with Answers
Answer is:
both (func(a1, a2, a3) ;) & ((*func)(a1, a2, a3);)
Answer is: