问答详情
源自:6-8 字符串函数

哪里有错误

#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;
  }


提问者:qq_风夜雪_0 2017-04-20 15:46

个回答

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


    没有错误啊~