使用三种方法实现strlen函数
#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>#include<assert.h>//计数器方法size_t my_strlen(const char* str) { assert(str); int count = 0; while (*str) { count++; str++; } return count;}//递归方法int my_...