Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this code:

int main()
{
    char ch[15];
    cout<<strlen(ch)<<endl; //7
    cout<<sizeof(ch)<<endl; //15
    return 0;
}

Why does strlen(ch) give different result even if it is empty char array?

share|improve this question
9  
It's not empty. It's loaded with uninitialized junk. – Mysticial Aug 13 '12 at 8:13

5 Answers

up vote 5 down vote accepted

ch is a local variable and local variables are not initialized. So your assumption that it is an empty string is not correct. Its filled with junk. It was just a co-incidence that a \0 character was found after 7 junk characters and hence strlen returned 7.

You can do something like these to ensure an empty string-

char ch[15]={0};
ch[0]='\0`;
strcpy(ch,"");

Here's a similar thread for more reading

variable initialization in C++

share|improve this answer
static locals are default-initialized ;) Or was it value-initialized? Damnit, I never get this right. – FredOverflow Aug 13 '12 at 8:39
static locals are zero-initialized before program startup; they are then default-initialized (for object types) when first encountered. – ecatmur Aug 13 '12 at 8:47

Your code has undefined behavior because you are reading the uninitialized values of your array with strlen. If you want a determinate result from strlen you must initialize (or assign to) your array.

E.g.

char ch[15] = "Hello, world!";

or

char ch[15] = {};

sizeof will give the size of its operand, as the size of char is one by definition the size of a char[15] will always be 15.

strlen gives the length of a null terminated string which is the offset of the first char with value 0 in a given char array. For a call to strlen to be valid, the argument to must actually point to a null terminated string.

share|improve this answer

The problem is in

strlen(ch);

strlen counts the number of chars, untill hitting the \0 symbol. Here, ch is non-initialized, so strlen could return anything.

share|improve this answer

As for the result from strlen, in your case you have an uninitialized char array, and so strlen only happens to yield 7: there must be a null character at array element 8, but this code could give different results for strlen every time.

Always initialize strings, it's easy enough with an array: char str[15] = {0};

sizeof is an operator used to get the size of a variable or a data type, or the number of bytes occupied by an array, not the length of a C string; don't expect strlen and strcpy to be interchangeable, or even comparable in any useful way.

For instance:

int main()
{
    char str[15] = "only 13 chars";

    cout << "strlen: " << strlen(str) << endl;
    cout << "sizeof: " << sizeof(str) << endl;
}

The output is:

strlen: 13
sizeof: 15
share|improve this answer

Returns the length of str.

The length of a C string is determined by the terminating null-character: A C string is as long as the amount of characters between the beginning of the string and the terminating null character.

sizeof returns number of bytes (15). Your array is filled by garbage, so, strlen can returns any number. Correct example is

int main()
{
    char ch[15] = {0};
    cout<<strlen(ch)<<endl; //0
    cout<<sizeof(ch)<<endl; //15
    return 0;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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