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