// echo3.c.  Like echo2.c, but uses pointers instead of array indices

int main (int argc, char *argv[]) {
  int i,j;
  while (*++argv)
    printf("%s ",*argv);
  printf("\n");
  return 0;
}
