Question: In C programming, Write a function int mystrlen(char *s) that returns the number of characters in string s. e.g., char s[]=program, strlen(s) is 7. You
In C programming, Write a function int mystrlen(char *s) that returns the number of characters in string s.
e.g., char s[]=program, strlen(s) is 7.
You cannot call strlen() function in your program. You also need to write the main() function to call mystrlen() function.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
