Language Basics C

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