What is a way in C that someone could find the length of a character array?
I will happily accept pseudo-code, but am not averse to someone writing it out if they'd like to :)
Provided the char array is null
terminated,
char chararray[10] = { 0 };
size_t len = strlen(chararray);