C Programming
Determine Output:void main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));}

2 4 4
2 4 5
2 5 5
5 5 5

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