edited by
395 views
0 votes
0 votes

What will be the output of the following C program? If you think it will give a runtime error, you need to mention it. In either case, your answer must include proper justifications without which no credit will be given.

#include<stdio.h>
main()
{
unsigned char i, j, a[]={1, 2, 3, 4, 5};
int n;
i=j=n=5;
while(i-- !=0) n+=a[i];
while(j++ !=0) n+=2;
printf("i=%d, j=%d, n=%d\n", i, j, n);
while(j-- !=0) a[0]+=n;
printf("j=%d, a[0]=%d\n", j, a[0]);
}
edited by

1 Answer

Related questions