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);}

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What's wrong in the following statement, provided k is a variable of type int?for(k = 2, k <=12, k++)

The commas should be semicolons.
The variable k can’t be initialized.
The increment should always be ++k .
The variable must always be the letter i when using a for loop.
There should be a semicolon at the end of the statement.

ANSWER DOWNLOAD EXAMIANS APP