Code Snippets C

#include
int main(void) {
int j;
j = 1;
again:
printf("%d ", j);
j++;
if(j<10)
goto again;
return 0;
}