#includestdio.h
int main()
{
int a[5]={ 2,1,6,8,10};
int k,l,m;
k=++a[1] ;
l=a[1]++;
m=a[k]++;
printf("%d %d %d ",k,l,m);
return 0;
}
Guess the output

Posted on by