Don't bother trying to zero-out your char array if you are dealing with strings. Below is a simple way to work with the char strings.
Copy (assign new string):
strcpy(members, "new value")blond girls");
If you really need to make your
Concatenate (add the string):
strcat(members, " are stupid!");
Empty stringzero-length:
members[0] = 0;
Simple like that.
