i have the following call to strcpy
Code:
strcpy(colour_piece_to_take, current_player ? "w" : "b");
printf("%s\n", colour_piece_to_take);
i expected it to print out a w to the screen but instead i got -8714

what is going on??
coop