Predict the output of the following c program
#includestdio.h
int main()
{
int a[4] = {2 ,4 ,5 ,6};
int i, j;
i = ++a[1];
j = a[1]++;
printf("%d; %d", i, j);
return 0;
}

Posted on by