int stringLength ( const char string[] ) { int count = 0; while ( string[count] != '\0' ) { count = count + 1; } return count; }