企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
>[info]写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度。 ~~~C #include <stdio.h> #include <stdlib.h> int length(char *s); int main() { int len; char str[20]; printf("请输入字符串:\n"); scanf("%s",str); len=length(str); printf("字符串有 %d 个字符。",len); } //求字符串长度 int length(char *s) { int i=0; while(*s!='\0') { i++; s++; } return i; } ~~~