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
"My salary was increased by 15%" Select the statement, which will EXACTLY reproduce the line of text above.

printf("My salary was increased by 15%%!");
printf("My salary was increased by 15'%'!");
printf("My salary was increased by 15%!");
printf("My salary was increased by 15/%!");

ANSWER DOWNLOAD EXAMIANS APP