题目内容
以下代码功能:不创建临时变量求字符串长度,模拟strlen()函数。试将代码补充完整。#includeusing namespace std;int Function(const char* p){ if(*p==NULL) return 0;else return(1);}int main(){ const char* p="abccefg";cout<
查看答案
搜索结果不匹配?点我反馈
更多问题