#include<stdio.h>
int main(){
int array[10] = {3,0,8,1,12,8,9,2,13,10};
int x,y,z;
x =++array[2];
y =array[2]++;
z =array[x++];
printf("%d\t%d\t%d\n",x,y,z);
return(0);
}
I guessed the output of this would be 9,9,1 or something(Actually Not sure)
But this broke out when compilied
10,9,10
PS:Forgive me, I am a noob