C Programming
What will be the output of the program ?#includevoid main(){ int a[5] = {5, 1, 15, 20, 25}; int i, j, m; i = ++a[1]; j = a[1]++; m = a[i++]; printf("%d, %d, %d", i, j, m);}

3, 2, 15
1, 2, 5
2, 3, 20
2, 1, 15

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

C Programming
String concatenation means -

Comparing the two strings to define the larger one.
Partitioning the string into two strings.
Combining two strings.
Merging two strings.
Extracting a substring out of a string.

ANSWER DOWNLOAD EXAMIANS APP