const char* a;
how do I make sure that string 'a' is null terminated? when a = "abcd" and I do sizeof(a), I get 4. Does that mean its not null-terminated? if it were, I would have gotten 5 ?
|
|
|
If you are handed a char array which may or may not have null-terminated data in it, there really isn't a good way to check. The best you can do is search for a null character up to a certian specified length (not indefinitely!). But 0 isn't exactly an unusual byte of data to find in an uninitialzed area of memory. This is one of the many things about C's defacto string standard that many people dislike. Finding the length of a string a client hands you is an O(n) search operation at best, and a segmentation fault at worst. Another issue of course is that arrays and pointers are interchangable. That means |
|||
|
|
|
You need to use
The string literal |
|||||||
|
|
You get |
|||||||||||
|
|
Also, all double-quoted string literals like your |
|||
|
|
|
The problem here is that you are confusing For the second question, how to make sure a string is null terminated. The only way to definitively do this is to null terminate the string yourself. Given only a |
|||||||||
|
|
sizeof(a) returns the size of the |
|||
|
|