#include int main(void) { int i; i = 1; loop: if (i > 10) goto end; printf("%d", i); printf("\n"); i = i + 1; goto loop; end: return 0; }