#include int main() { int i = 0; bucle: printf("%i ", i); i = i + 1; if (i < 5) goto bucle; puts(""); }