2019年5月11日

字符串常量与 字符指针,字符数组

摘要: 1. 字符串的定义(1) char buf[10] = "hello"; //定义了10个字节的数组,但只用了6个字节存放字符串(2) char *str = "hello"; //此处hello是字符串常量,存储在长常量区,把首地址传给指针变量 sts(3) char *s = "hello"; 阅读全文

posted @ 2019-05-11 13:03 管理员D 阅读(336) 评论(0) 推荐(0) 编辑

C 删除字符串中某个指定的字符

摘要: #include char *del_char(char *str, char ch) { unsigned char i=0,j=0; while(str[i] != '\0') { if(str[i] != ch) //只有在不是空格的情况下目标才会移动赋值 { str[j++] = str[i]; } i++; //源一直移动 } str[j] = ... 阅读全文

posted @ 2019-05-11 12:36 管理员D 阅读(6238) 评论(0) 推荐(0) 编辑

导航