Math, asked by rushikeshmalleshe, 4 months ago

question
What will be the output of the following C program?
#include<stdio.h>
int main()
{
int a[5] = {5, 3, 15, 20, 25};
int i, j, m;
i = ++a[1];
j = a[1]++
m = a[i++];
printf("%d, %d %d", i, j, m);
return 0;
}​

Answers

Answered by gowrarajinchara
9

Step-by-step explanation:

hope it is helpful.......

Attachments:
Similar questions