sizeof refers to the size of each element, in these cases, 1 or 2
countof is the element count
bytesof is the number of bytes occupied by the array.
In this case, null terminator chars are included in the count
wchar w="hello"
print sizeof w
print countof w
print bytesof w
The other string types are pointers, and therefore have a size of sys, but you can still get the character size using widthof