Possible Duplicate:
How do I tokenize a string in C++?
pseudocode:
    Attributes[] = Split line(' ')
How?
I have been doing this:
  char *pch;
  pch = strtok(line," ");
  while(pch!=NULL)
  {
      fputs ( pch, stdout ); 
  }
and getting a non-written, stuck, exit file. It's something wrong with this? Well, the thing isn't even meeting my pseudocode requirement, but I'm confused about how to index tokens (as char arrays) to my array, I guess I should write a 2-dim array?
 
     
     
     
    