Thread: another problem
View Single Post
Old 11-30-2005, 04:43 PM   #1 (permalink)
i_learn
 
True Techie

Join Date: Nov 2005

Posts: 115

i_learn

Default another problem

x=5;y=5;z=5;
y- = --x;
printf("%d %d",y,x);printf("\n\n\n");
z- = x--;
printf("%d %d",z,x);printf("\n\n\n");
x- = --x - x--;
printf("%d",x);

i got the first 2 values of x, whats the last value of x???
i_learn is offline