vote up 4 vote down star
4

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 if it had some values stored in it then it should not. For example if I do strcat then old value should not remain

members = "old value";

//empty it efficiently
strcat(members,"new"); // should return only new and not "old value new"
flag

76% accept rate
1  
What do you mean "empty an array"? – pmg Oct 13 at 10:53
what do you mean by empty it? – giorgian Oct 13 at 10:53
1  
Define 'empty'. – Michael Foukarakis Oct 13 at 10:54
1  
members[0]=members[1]=members[2]=members[3]...=members[255]=0 no loop there ;) – gnibbler Oct 13 at 11:18
3  
So your "array" is a special kind of array: it is a string. To "empty" a string, set it's first element to '\0': members[0] = '\0'; – pmg Oct 13 at 11:27
show 3 more comments

12 Answers

vote up 16 vote down check

using

  memset(members, 0, 255);

in general

  memset(members, 0, sizeof members);

if the array is in scope, or

  memset(members, 0, nMembers * (sizeof members[0]) );

if you only have the pointer value, and nMembers is the number of elements in the array.


EDIT Of course, now the requirement has changed from the generic task of clearing an array to purely resetting a string, memset is overkill and just zeroing the first element suffices (as noted in other answers).

link|flag
+1 - I would go for this as it ensures that all array elements are in a known state. – ChrisBD Oct 13 at 11:01
It goes against the (epic) requirement of not using a loop, though. – Michael Foukarakis Oct 13 at 11:13
While memset is probably not implemented as a recursion, it could be -- in either case, the iteration is decently hidden from sight, which was the ostensible requirement. – Steve Gilham Oct 13 at 11:22
vote up 13 vote down

Depends on what you mean by 'empty':

members[0] = '\0';
link|flag
That would only change the value of members[0], not members[1] through members[254]. Fine if you are accessing sequentially...but not so fine in other cases. – Thomas Owens Oct 13 at 11:05
2  
After the OP's edit it seems my solution should work for his requirements, as strcat() will find the NULL byte and treat it accordingly. – Felix Oct 13 at 11:09
2  
Not a better solution. Just a solution to a different problem. – ypnos Oct 13 at 11:47
1  
There's no way to "empty" an abstract array in C. Every array constains something, even if it is zeroes. The notion of "emptying an array" is only applicable to higher-level logical interpretations of array contents. For example, the contents of the array might be interpreted as a C-string. In that case the proper way to "empty" it is to set the very first element to '\0'. Exactly what Felix did. I don't know what other interpretations the OP might have in mind, but without making it more specific all those attempts with 'memset' are just meaningless answers to a meaningless question. – AndreyT Oct 13 at 13:52
1  
@tinkertim: There's no NULL here. And no, 'strcat' does not know how to handle NULL. It will crash if you pass NULL to it. – AndreyT Oct 13 at 14:33
show 3 more comments
vote up 3 vote down

I'd go with

members_in_use = 0;
link|flag
-1 that doesn't make any sense. – Kinopiko Oct 13 at 11:06
It actually makes a lot of sense, since the OP is asking for an operation (emptying) that is not part of a C array - therefore, ideally, he'd implement a new data structure, and pmg's way of signaling the structure is empty is good enough. – Michael Foukarakis Oct 13 at 11:09
No, it really doesn't make any sense. – Kinopiko Oct 13 at 11:12
Kinopiko: Apparently you don't understand the approach then – Christian Oct 13 at 11:25
Kinopiko: read starblue answer as it explains my reasoning better than I can explain in a comment (thank you starblue) – pmg Oct 13 at 11:33
vote up 2 vote down

char members[255] = {0};

link|flag
-1 That is an initializer, it doesn't empty the array. – Kinopiko Oct 13 at 11:02
and you give me minus after he edited his question – pzico Oct 13 at 11:06
This answer was wrong before he edited the question. – Kinopiko Oct 13 at 11:08
Nope, because he didn't specify that it must be done after initializing. Especially this may have been understood by his first example before edit and because it's also very common use case to clear an array. – pzico Oct 13 at 11:14
vote up 2 vote down

You cannot empty an array as such, it always contains the same amount of data.

In a bigger context the data in the array may represent an empty list of items, but that has to be defined in addition to the array. The most common ways to do this is to keep a count of valid items (see the answer by pmg) or for strings to terminate them with a zero character (the answer by Felix). There are also more complicated ways, for example a ring buffer uses two indices for the positions where data is added and removed.

link|flag
vote up 2 vote down

EDIT: Given the most recent edit to the question, this will no longer work as there is no null termination - if you tried to print the array, you would get your characters followed by a number of non-human-readable characters. However, I'm leaving this answer here as community wiki for posterity.

char members[255] = { 0 };

That should work. According to the C Programming Language:

If the array has fixed size, the number of initializers may not exceed the number of members of the array; if there are fewer, the remaining members are initialized with 0.

This means that every element of the array will have a value of 0. I'm not sure if that is what you would consider "empty" or not, since 0 is a valid value for a char.

link|flag
-1 that is an initializer. – Kinopiko Oct 13 at 11:03
It depends on how you define "empty". The char with a value of 0 is not a human-readable character and the array of chars is in a known state. I would consider that empty. It also does the exact same thing as memset (if my recollection of memset is correct - it's been too long since I've used C). – Thomas Owens Oct 13 at 11:04
vote up 2 vote down

Given the bickering that is going on for such a basic operation, I thought I'd post something less silly than that.

The solution is simple, try this:

/* Dear Compiler:
 * Please magically set the first byte to NULL when I need it
 * to be :) Thank you!
 */
link|flag
Rofl.. you made me cryin'. – Andrejs Cainikovs Oct 13 at 13:38
2  
#pragma artificial_intelligence – ammoQ Oct 13 at 13:39
i tried "dear compiler". it works!! – EffoStaff Effo Oct 13 at 13:41
How can you set a byte to NULL? What's 'NULL' doing in this context? – AndreyT Oct 13 at 14:09
well, NULL: Nothing yoU'Ll Learn... – EffoStaff Effo Oct 13 at 14:38
show 3 more comments
vote up 1 vote down
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..

link|flag
1  
Can be also written as *members = 0; – eyalm Oct 13 at 12:11
vote up 1 vote down

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, "blond girls");

Concatenate (add the string):

strcat(members, " are stupid!");

Empty string:

members[0] = 0;

Simple like that.

link|flag
i agree, but strcat is very expensive, strcpy(members, "blond girls"), strcpy(members + N, " are stupid!"), will be better. – EffoStaff Effo Oct 13 at 13:53
Sure, this is only for a reference. – Andrejs Cainikovs Oct 13 at 14:36
vote up 0 vote down

By "empty an array" if you mean reset to 0, then you can use bzero.

#include <strings.h>  
void bzero(void *s, size_t n);

If you want to fill the array with some other default character then you may use memset function.

#include <string.h>  
void *memset(void *s, int c, size_t n);
link|flag
bzero and memset (usually) both use a loop. – Michael Foukarakis Oct 13 at 11:06
vote up 0 vote down

Disclaimer: I don't usually program in C so there may be any syntax gotcha in my examples, but I hope the ideas I try to express are clear.

If "emptying" means "containing an empty string", you can just assign the first array item to zero, which will effectively make the array to contain an empry string:

members[0] = 0;

If "emptying" means "freeing the memory it is using", you should not use a fixed char array in the first place. Rather, you should define a pointer to char, and then do malloc / free (or string assignment) as appropriate.

An example using only static strings:

char* emptyString="";
char* members;

//Set string value
members = "old value";

//Empty string value
member = emptyString

//Will return just "new"
strcat(members,"new");
link|flag
vote up 0 vote down

simpler is better - make sense?

in this case just members[0] = 0 works. don't make a simple question so complicated.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.