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
You can use the following instruction:
strcpy_s(members, "");