0
Attempted
30
Not Attempted
0
Marked For Review
0
Attempted & Reviewed
<span style="font-size:10.0pt;font-family:Arial;mso-fareast-font-family:"Times" new="" roman";mso-bidi-font-family:arial;color:black;mso-ansi-language:en-us;mso-fareast-language:en-us;mso-bidi-language:ar-sa="">What will be the output of the following function?
include <stdio.h>
void 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);
}
Select Your Answer:
All Questions
Attempted
Not Attempted
Marked for Review
Attempted & Reviewed
Current