I wanted to display "www.iloveyou.com" using the following command but it shows "ilove.comyou" . I don't understand what is the problem.

Code:
int number;
printf ("www.");
goto x;
z:
printf (".com");
goto y;
x:
printf ("ilove");
goto z;
y:
printf ("you");
getch ();
return 0;
}