C Programming
A function 'p' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as

int (*p) (char *)[]
int(*p(char *))[]
int *p(char *)[]
None of these.

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

has # as the first character
need not start on a new line
comes before the first executable statement
need not start on the first column

ANSWER DOWNLOAD EXAMIANS APP