View Single Post
Old
  (#6)
[WaffenSS]Cethin is Offline
Senior Member
 
Posts: 163
Join Date: Apr 2002
Location: Connecticut
 Send a message via ICQ to [WaffenSS]Cethin Send a message via AIM to [WaffenSS]Cethin  
Default 10-31-2002, 05:52 PM

Sec I'll post the code that I'm trying to do

[code:a272b]for (count = 0; count < 5; count++)
game_dice1[count] = set_dice1[count];
[/code:a272b]

game_dice1 & set_dice1 is declared as:
[code:a272b]char game_dice1[5][10];
char set_dice1[5][10] = {"///////",
"/ /",
"/ * /",
"/ /",
"///////",
};[/code:a272b]

and of course count is:
[code:a272b]int count;[/code:a272b]
  
Reply With Quote