show/hide this revision's text 2 added 121 characters in body

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.

show/hide this revision's text 1

Don't bother trying to zero-out your char array if you are dealing with strings.

strcpy(members, "new value");

If you really need to make your string zero-length:

members[0] = 0;

Simple like that.