String initialization.. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T23:36:58Z http://stackoverflow.com/feeds/question/49596 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/49596/string-initialization 7 String initialization.. Prakash 2008-09-08T12:45:16Z 2008-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#49620 14 Answer by Kyle Cronin for String initialization.. Kyle Cronin 2008-09-08T12:53:59Z 2008-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#49622 2 Answer by Nathan Fellman for String initialization.. Nathan Fellman 2008-09-08T12:54:31Z 2008-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#49647 0 Answer by Mark Ingram for String initialization.. Mark Ingram 2008-09-08T12:58:58Z 2008-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#49805 4 Answer by Larry Gritz for String initialization.. Larry Gritz 2008-09-08T14:28:29Z 2008-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 -2 Answer by spoulson for String initialization.. spoulson 2008-09-08T14:35:21Z 2008-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#59445 2 Answer by Kevin for String initialization.. Kevin 2008-09-12T16:29:31Z 2008-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>