✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What will be the output of the program?
#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);
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!