C Programming
Determine Output:#includevoid main(){ char s[]={'a','b','c','n','c','\0'}; char *p, *str, *str1; p=&s[3]; str=p; str1=s; printf("%c", ++*p + ++*str1-32);}

None of These
N
M
P

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