码迷,mamicode.com
首页 > 编程语言 > 详细

一个关于字符串的c语言程序

时间:2020-12-19 12:52:11      阅读:5      评论:0      收藏:0      [点我收藏+]

标签:结果   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

一个关于字符串的c语言程序

标签:结果   int   c语言   语言   hello   char   长度   return   源程序   

原文地址:https://www.cnblogs.com/duanqibo/p/14135798.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!