#include int main(){ // A loop int i = 0; top: printf("%d\n", i); i++; if(i < 10) goto top; return 0; }