What will be the output of the following program on GCC?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC?

#include 
int main(){
int x=10,y=x,z=x,t;
y-=x;
z=-x;
t=-x;
printf("y=%d z=%d t=%d ",y,z,t);
return 0;
}

A. y=0 z=10 t=-10
B. y=-10 z=-10 t=-10
C. y=10 z=-10 t=-10
D. y=0 z=-10 t=-10