c语言-指针统计字符串长度,字符串连接
#include "stdio.h"int main(){ char s[100]="hello"; char b[]="world"; int len=mystrlen(s); printf("len=%d\n",len); mystradd(s,b); printf("s=%s\n",