What will be returned in the following C code?
size- t strlen(const char *s) const char *sc; for(sc = s; *sc!= ' \ O ' ; ++sc) return(sc - s) ;
Answer: B
The strlen() function is used to return the length of the string s.