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 *))[]
None of these.
int *p(char *)[]
int (*p) (char *)[]

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

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

ANSWER DOWNLOAD EXAMIANS APP