Solved

Reimplement the Function Strlen

Question 4

Essay

Reimplement the function strlen.Call your function strLen.The library function,strlen takes one char str[] argument,so you give strLen a char str[] argument as well.

Correct Answer:

verifed

Verified

int strLen(const char str[]);
// Pre: st...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions