黑马程序员技术交流社区

标题: 字符串特点之二 [打印本页]

作者: lvguodong    时间: 2015-10-4 22:14
标题: 字符串特点之二
  1. #include <stdio.h>
  2. #include <string.h>      //串操作及相关内存操作函数
  3. int main()
  4. {
  5.     char a[]={"abcdefg"},b[]="国hij",c[]={"栋\0hij"},i,j,k,l,m,n;    //1个中文字符==3个英文字符
  6.     i=strlen(a);       //strlen(数组名);用于计算字符串中字符的实际个数(不包含'\0'标志),需要#include <string.h>
  7.     j=sizeof(a);
  8.     printf("i=%d\tj=%d\n",i,j);
  9.     k=strlen(b);       //strlen(数组名);用于计算字符串中字符的实际个数(不包含'\0'标志),需要#include <string.h>
  10.     l=sizeof(b);
  11.     printf("k=%d\tl=%d\n",k,l);
  12.     m=strlen(c);       //strlen(数组名);用于计算字符串中字符的实际个数(不包含'\0'标志),需要#include <string.h>
  13.     n=sizeof(c);
  14.     printf("m=%d\tn=%d\n",m,n);

  15.     return 0;
  16. }
复制代码







欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2