#include int main () { int i = 0; LOOP: printf("%d ", i); i++; if (i < 10) goto LOOP; return 0; }