I've recently been having issues with chars...
I have the following struct
struct player_attribs {
char *name;
};
there is other stuff in it as well, anyhow....
I then:
player_attribs player[20];
do I still have to
player[5].name = new char[10] = "1234567890";
or not?
it "seems" I can just:
player[5].name = "fred";
your comments?