Have an array of chars like char members[255]. How can I empty it completely without using a loop?
char members[255];
By \"empty\" I mean that
members[0] = 0;
is enough, given your requirements.
Notice however this is not "emptying" the buffer. The memory is still allocated, valid character values may still exist in it, and so forth..