标签:
it |
分类: C语言 |
#include<stdio.h>
//声明要调用的函数
int mystrlen(char *s);
void main()
{
}
//定义mystrlen函数
int mystrlen(char *s)
{
}
标签:
it |
分类: C语言 |