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=3,y,z;
z=y=x;
z*=y/=x;
printf("%d %d %d ",x,y,z);
return 0;
}

A. 37683
B. 36894
C. 37624
D. 37622