I have defined string:
char ch[300];
When I gettng string length
strlen(ch);
I always have length equals to 323. Why I have this magic number?
Does it happens because function strlen is looking for first 0x00 byte and gets outside of array?
Is it safe to let strlen go outside of array?
Does it means that if I would like to use strlen function I must set last byte to ch[300]=0 ?
char ch[300]is not a string. It's an array of 300 characters. You can make it a string by initializing (up to) the first 299 characters, and then putting a'\0'terminator at the end. A C string is an array of characters terminated by a character with the value0. – unwind Sep 12 '12 at 10:00