标签:结果 int c语言 语言 hello char 长度 return 源程序
源程序:
#include <stdio.h>
#include <string.h>
int main()
{
char str[20];
int length;
length=strlen(strcpy(str,"Hello World!"));
printf("字符串长度:%d\n",length);
return 1;
}
运行结果:12
标签:结果 int c语言 语言 hello char 长度 return 源程序
原文地址:https://www.cnblogs.com/duanqibo/p/14135798.html