vote up 7 vote down star
2

How does the compiler fill values in char array[100] = {0};? What's the magic behind it?

I wanted to know how internally compiler initializes.

Thanks in advances. Looking more such sorts of tricks.

flag

71% accept rate

7 Answers

vote up 16 vote down check

It's not magic.

The behavior of this code in C is described in section 6.7.8.21 of the C specification (online draft of C spec): for the elements that don't have a specified value, the compiler initializes pointers to NULL and arithmetic types to zero (and recursively applies this to aggregates).

The behavior of this code in C++ is described in section 8.5.1.7 of the C++ specification (online draft of C++ spec): the compiler default-initializes the elements that don't have a specified value.

Also, note that in C++ (but not C), you can use an empty initializer list, causing the compiler to default-initialize all of the elements of the array:

char array[100] = {};

As for what sort of code the compiler might generate when you do this, take a look at this question: Strange assembly from array 0-initialization

link|flag
vote up 6 vote down

Implementation is up to compiler developers.

If your question is "what will happen with such declaration" - compiler will set first array element to the value you've provided (0) and all others will be set to zero because it is a default value for omitted array elements.

link|flag
I don't have a source, but I'm pretty sure that I read somewhere that there is no default value for array declarations; you get whatever garbage was already there. There's no sense in wasting time setting these values when you're likely to overwrite them anyway. – Ryan Fox Mar 10 at 5:56
Ryan, if you don't set a value for the first element that the whole array is uninitialised and indeed contains garbage, but if you set a value for at least one element of it the whole array becomes initialised so unspecified elements get initialised implicitly to 0. – qrdl Mar 10 at 6:05
@qrdl you are right – mahesh Mar 10 at 6:23
For C++ an empty initializer list for a bounded array default-initializes all elements. – dalle Mar 10 at 6:54
dalle, I'm not into c++ so my response was about c. – qrdl Mar 10 at 8:00
show 2 more comments
vote up 4 vote down

It depends where you put this initialisation.

If the array is static as in

char array[100] = {0};

int main(void)
{
...
}

then it is the compiler that reserves the 100 0 bytes in the data segement of the program. In this case you could have omitted the initialiser.

If your array is auto, then it is another story.

int foo(void)
{
char array[100] = {0};
...
}

In this case at every call of the function foo you will have a hidden memset.

The code above is equivalent to

int foo(void)
{ 
char array[100];

memset(100, 0, sizeof array);
....
}

and if you omit the initialiser your array will contain random data (the data of the stack).

If your local array is declared static like in

int foo(void)
{ 
static char array[100] = {0};
...
}

then it is technically the same case as the first one.

link|flag
vote up 2 vote down

If your compiler is GCC you can also use following syntax:

int array[256] = {[0 ... 255] = 0};

Please look at

http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc/Designated-Inits.html#Designated-Inits

link|flag
Thank you lakshmanaraj for such infamous initialization tricks. – mahesh Mar 10 at 6:26
Welcome! since you asked for Looking more such sorts of tricks, I had provided – lakshmanaraj Mar 10 at 6:41
You certainly can do this if you choose, but there are obvious disadvantages to relying on compiler-specific extensions like this one. – Dan Olson Mar 10 at 9:59
@Dan Olson his question himself is asking about compiler specific and hence posted this. If you feel it is useless, i will delete. – lakshmanaraj Mar 10 at 10:02
It's not useless, it's interesting. The caveat just deserves to be noted. – Dan Olson Mar 10 at 10:08
show 1 more comment
vote up 0 vote down

Also note that some compilers (Pelles C,...) will translate

char array[10000] = {0};

into 10000 zero's in your executable.

link|flag
vote up 0 vote down

Note that if it's global or static it will (probably) be in the .bss segment

link|flag

Your Answer

Get an OpenID
or

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