View Single Post
Old 04-18-2003, 03:08 PM   #2 (permalink)
alpha
Regular Contributor
 
Join Date: Feb 2003
Posts: 120
alpha is on a distinguished road
Send a message via AIM to alpha
Code:
int i;

for(i = 0; i < sizeof(target); i++) {
  newnode->word[i] = target[i];
}
or i think you may be able to use strcpy.
alpha is offline   Reply With Quote