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
2, 3, 20
2, 1, 15
1, 2, 5

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

comes before the first executable statement
need not start on the first column
has # as the first character
need not start on a new line

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

Enhances the logical clarity of the program.
Helps to avoid repeated programming across programs.
Makes the debugging task easier.
All of these
Helps to avoid repeating a set of statements many times.

ANSWER DOWNLOAD EXAMIANS APP