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?
|
|
You can do something like these to ensure an empty string-
Here's a similar thread for more reading |
|||||
|
|
Your code has undefined behavior because you are reading the uninitialized values of your array with E.g.
or
|
||||
|
|
|
The problem is in
|
|||
|
|
|
As for the result from Always initialize strings, it's easy enough with an array:
For instance:
The output is:
|
||||
|
|
|
|||
|
|