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
9
Step-by-step explanation:
hope it is helpful.......
Attachments:
Similar questions