What is the output of the code?

#includestdio.h
#includeconio.h
void main()
{
int x=6,y=4;
x=x*y;
y=x/y;
x=x/y;
printf("x=%d and y=%d, x, y");
getch();
}


Posted on by