Q130
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) ;
A.
number of characters equal in sc
B.
length of string s
AnswerC.
doesn't return any value
D.
displays string s
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board