String initialization.. - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T23:36:58Zhttp://stackoverflow.com/feeds/question/49596http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/49596/string-initialization7String initialization..Prakash2008-09-08T12:45:16Z2008-09-12T16:29:31Z
<p>What is the difference between</p>
<pre><code>Str[32] = "\0";
</code></pre>
<p>and </p>
<pre><code>Str[32] = "";
</code></pre>
http://stackoverflow.com/questions/49596/string-initialization/49620#4962014Answer by Kyle Cronin for String initialization..Kyle Cronin2008-09-08T12:53:59Z2008-09-08T12:53:59Z<p>Since you already declared the sizes, the two declarations are exactly equal. However, if you do not specify the sizes, you can see that the first declaration makes a larger string:</p>
<pre><code>char a[] = "a\0";
char b[] = "a";
printf("%i %i\n", sizeof(a), sizeof(b));
</code></pre>
<p>prints</p>
<pre><code>3 2
</code></pre>
<p>This is because a ends with two nulls (the explicit one and the implicit one) while b ends only with the implicit one.</p>
http://stackoverflow.com/questions/49596/string-initialization/49622#496222Answer by Nathan Fellman for String initialization..Nathan Fellman2008-09-08T12:54:31Z2008-09-08T12:54:31Z<p>Unless I'm mistaken, the first will initialize 2 chars to 0 (the '\0' and the terminator that's always there, and leave the rest untouched, and the last will initialize only 1 char (the terminator).</p>
http://stackoverflow.com/questions/49596/string-initialization/49647#496470Answer by Mark Ingram for String initialization..Mark Ingram2008-09-08T12:58:58Z2008-09-08T12:58:58Z<p>In the first case, your string will contain 2 null characters. In the second case, your string will contain 1 null character. (Using the quotes to declare strings automatically appends a null character at the end).</p>
http://stackoverflow.com/questions/49596/string-initialization/49805#498054Answer by Larry Gritz for String initialization..Larry Gritz2008-09-08T14:28:29Z2008-09-08T14:28:29Z<p>As others have pointed out, "" implies one terminating '\0' character, so "\0" actually initializes the array with two null characters.</p>
<p>Some other answerers have implied that this is "the same", but that isn't quite right. There may be no practical difference -- as long the only way the array is used is to reference it as a C string beginning with the first character. But note that they do indeed result in two different memory initalizations, in particular they differ in whether Str[1] is definitely zero, or is uninitialized (and could be anything, depending on compiler, OS, and other random factors). There are some uses of the array (perhaps not useful, but still) that would have different behaviors.</p>
http://stackoverflow.com/questions/49596/string-initialization/49820#49820-2Answer by spoulson for String initialization..spoulson2008-09-08T14:35:21Z2008-09-08T14:35:21Z<p>There is no difference. They will both generate a compiler error on undeclared symbol. :P</p>
http://stackoverflow.com/questions/49596/string-initialization/59445#594452Answer by Kevin for String initialization..Kevin2008-09-12T16:29:31Z2008-09-12T16:29:31Z<p>Well, assuming the two cases are as follows (to avoid compiler errors):</p>
<pre><code>char str1[32] = "\0";
char str2[32] = "";
</code></pre>
<p>As people have stated, str1 is initialized with two null characters:</p>
<pre><code>char str1[32] = {'\0','\0'};
char str2[32] = {'\0'};
</code></pre>
<p>However, according to both the C and C++ standard, if part of an array is initialized, then remaining elements of the array are default initialized. For a character array, the remaining characters are all zero initialized (i.e. null characters), so the arrays are <em>really</em> initialized as:</p>
<pre><code>char str1[32] = {'\0','\0','\0','\0','\0','\0','\0','\0',
'\0','\0','\0','\0','\0','\0','\0','\0',
'\0','\0','\0','\0','\0','\0','\0','\0',
'\0','\0','\0','\0','\0','\0','\0','\0'};
char str2[32] = {'\0','\0','\0','\0','\0','\0','\0','\0',
'\0','\0','\0','\0','\0','\0','\0','\0',
'\0','\0','\0','\0','\0','\0','\0','\0',
'\0','\0','\0','\0','\0','\0','\0','\0'};
</code></pre>
<p>So, in the end, there really is no difference between the two.</p>