vote up 2 vote down star

Hello,

I thought by setting the first element to a null would clear the entire contents of a char array.

char my_custom_data[40] = "Hello!";
my_custom_data[0] = '\0';

However, this only sets the first element to null.

or

my_custom_data[0] = 0;

rather than use memset, I thought the 2 examples above should clear all the data.

Many thanks for any advice,

flag

60% accept rate
Jared, why did you set the c++ tag? he talked about "C" and did not add any C++ related tags. – Johannes Schaub - litb Mar 11 at 1:08
This applies equally well to character arrays in C++, even though he didn't specify. – Adam Hawes Mar 11 at 5:37
that's not what annoys me. but that answerers come here and answer the question with stuff like std::copy, which are probably not helpful to the questioner, because he asked about >>C<<. He could have asked the questioner in a comment about adding the tag. – Johannes Schaub - litb Mar 11 at 15:06
basic questions that contain only for/while or variable declarations could equally be all of java/c++/c/c# but still rules apply radically different: { int a; { int a; } } << error in Java, but not in C/C++. – Johannes Schaub - litb Mar 11 at 15:08
I've removed the C++ tag to avoid what we've already seen with people offering C++ specific solutions – Alnitak Mar 11 at 16:34

11 Answers

vote up 20 vote down check

It depends on how you want to view the array. If you are viewing the array as a series of char's then the only way to clear out the data is to touch every entry. memset is probably the most effective way to achieve this.

On the other hand if you are choosing to view this as a C/C++ null terminated string, setting the first byte to 0 will effectively clear the string.

link|flag
lol I thoght the same thing when I saw that +1 – hhafez Mar 11 at 0:38
They key word in the answer is 'effectively'. Only the first element is begin set to 0 and the rest still have undefined values but if you are treating the array as a null terminated string and the first element is null, then the string is considered empty. – Arnold Spence Mar 11 at 1:46
indeed, this is the answer folks. – Johannes Schaub - litb Mar 11 at 1:49
@caparcode, exactly. That's why it's very important to understand how the array is being used. – JaredPar Mar 11 at 1:49
Yes, that is what I should have said in my first post. The char is a terminated string. so either these will do that trick. char[0] = '\0'; or char[0] = 0. I am not sure but I heard that using '\0' is better for using null terminated strings. – robUK Mar 11 at 2:06
show 3 more comments
vote up 4 vote down

An array in C is just a memory location, so indeed, your my_custom_data[0] = '\0'; assignment simply sets the first element to zero and leaves the other elements intact.

If you want to clear all the elements of the array, you'll have to visit each element. That is what memset is for:

memset(&arr[0], 0, sizeof(arr));

This is generally the fastest way to take care of this. If you can use C++, consider std::fill instead:

char *begin = &arr;
char *end = begin + sizeof(arr);
std::fill(begin, end, 0);
link|flag
I believe the second version should be: std::fill( arr, arr+ sizeof(arr)/sizeof(arr[0]), 0 ); – dribeas Mar 11 at 0:40
Clarification: don't use sizeof with fill because you'll get in trouble later with arrays of int, long, double or what have you. – Zan Lynx Mar 11 at 1:08
I prefer: std::fill(&arr[0], &arr[arr_len], 0); – Zan Lynx Mar 11 at 1:10
Zan Lynx, that's undefined behavior. you cannot do &arr[arr_len]. but you have to do std::fill(arr, arr + sizeof arr, 0); or if you have the length somewhere std::fill(arr, arr + arr_len, 0); assuming an array of char – Johannes Schaub - litb Mar 11 at 1:11
It is valid only in C . although the question clearly targetted C (another guy added a C++ tag, i've no clue why), the std::fill shows C++ affinity :) – Johannes Schaub - litb Mar 11 at 1:12
show 3 more comments
vote up 3 vote down

Nope. All you are doing is setting the first value to '\0' or 0.

If you are working with null terminated strings, then in the first example, you'll get behavior that mimics what you expect, however the memory is still set.

If you want to clear the memory without using memset, use a for loop.

link|flag
I say no on the for loop. Try not to write your own "improved" (and usually not) library functions. In fact, memset and memcpy are rather special are often inlined into custom machine code for the CPU based on what is known about data alignment and length. – Zan Lynx Mar 11 at 1:03
@Zan the OP doesn't want to use memset (perhaps he's embedded and doesn't have it available). But yes, memset is usually highly optimal, and likely faster than a for loop. – Adam Hawes Mar 11 at 5:40
True, however he didn't want to use memset, so I suggested a for loop. – Alan Mar 11 at 6:44
vote up 3 vote down

Why would you think setting a single element would clear the entire array? In C, especially, little ever happens without the programmer explicitly programming it. If you set the first element to zero (or any value), then you have done exactly that, and nothing more.

When initializing you can set an array to zero:

char mcd[40] = {0}; /* sets the whole array */

Otherwise, I don't know any technique other than memset, or something similar.

link|flag
vote up 2 vote down

You should use memset. Setting just the first element won't work, you need to set all elements - if not, how could you set only the first element to 0?

link|flag
memset shouldn't be used over readability: stackoverflow.com/questions/453432/… – Johann Gerell Mar 11 at 7:45
vote up 1 vote down

Writing a null character to the first character does just that. If you treat it as a string, code obeying the null termination character will treat it as a null string, but that is not the same as clearing the data. If you want to actually clear the data you'll need to use memset.

link|flag
vote up 1 vote down

Why not use memset()? That's how to do it.

Setting the first element leaves the rest of the memory untouched, but str functions will treat the data as empty.

link|flag
Don't use memset over readability: stackoverflow.com/questions/453432/… – Johann Gerell Mar 11 at 7:47
vote up 0 vote down

I thought by setting the first element to a null would clear the entire contents of a char array.

That is not correct as you discovered

However, this only sets the first element to null.

Exactly!

You need to use memset to clear all the data, it is not sufficient to set one of the entries to null.

However, if setting an element of the array to null means something special (for example when using a null terminating string in) it might be sufficient to set the first element to null. That way any user of the array will understand that it is empty even though the array still includes the old chars in memory

link|flag
Don't use "memset" over readability: stackoverflow.com/questions/453432/… – Johann Gerell Mar 11 at 7:47
vote up 0 vote down

memset(my_custom_data, 0, sizeof(my_custom_data));

or

memset(my_custom_data, 0, strlen(my_custom_data));

link|flag
vote up 0 vote down

set the first element to NULL. printing the char array will give you nothing back.

link|flag
vote up -1 vote down

what about

strcpy(my_custom_data, "");
link|flag
Would be the same as the OP's code; strcpy would stop at the null terminator in your empty string and not overwrite any more characters. – Adam Hawes Mar 11 at 5:42

Your Answer

Get an OpenID
or

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