拥抱未知
拥抱未知
全部文章
分类
未归档(1)
题解(3)
归档
标签
去牛客网
登录
/
注册
拥抱未知的博客
全部文章
(共1篇)
题解 | #字符串连接#
#include<stdio.h> //字符串连接 int strlen(char *str){ int i=0,len=0; while(str[i++]!='\0'){ len++; } return len; } int main(){ char str[200]...
C
2022-01-25
0
322