哪里有错误

来源:6-8 字符串函数

qq_风夜雪_0

2017-04-20 15:46

#include<stdio.h>
#include<string.h>
int main()
{
  char s1[]="你好";
  char s2[]={'n','i','h','a','o','\0'};
  printf("字符串s1长度=%d\n",strlen(s1));
  printf("字符串s2长度=%d\n",strlen(s2));
  return 0;
  }


写回答 关注

1回答

  • 慕粉1441471043
    2017-04-21 21:32:09

    没有错误啊~

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926028 学习 · 20793 问题

查看课程

相似问题