Problem: Write two versions of the strlen function as
int strlen(const char *string) -- Determine the length of a string. The first version should use array subscripting, and the second version should use pointer arithmetic
You have to implement this function and give all code.