I mean, as far as I know, a string would 'end' when 'null value(\0)' appears.
And many functions have to do with string return value and escape as soon as it meets 'null value' in string.
But, what if there's no null value in string?
Is it even possible to create such string?
Like, is it possible to create an array
char cArray[100] ={};
and fill all the indexes out without 'null'?.
If so, what's the best way to 'indicate the end of string that doesn't have null value at all'?
Is it even 'a string' if there's no null in it?