COMPUTER SCIENCE AND ENGINEERING
DATA STRUCTURES
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
Determine the output:#include<stdio.h>int 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 1 15
|
|
2 3 20
|
|
1 2 5
|
Explanation:
There is 1 question to complete.