C Programming
Determine Output:void main(){ static char *s[] = {"black", "white", "yellow", "violet"}; char **ptr[] = {s+3, s+2, s+1, s}, ***p; p = ptr; ++p; printf("%s",*--*++p + 3); }

et
te
ck
ow

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