Chinaunix首页 | 论坛 | 博客
  • 博客访问: 187965
  • 博文数量: 36
  • 博客积分: 230
  • 博客等级: 二等列兵
  • 技术积分: 352
  • 用 户 组: 普通用户
  • 注册时间: 2010-10-22 18:09
文章分类

全部博文(36)

文章存档

2013年(29)

2011年(5)

2010年(2)

我的朋友

分类: C/C++

2013-04-05 11:52:30


点击(此处)折叠或打开

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #define MAX_LEN 100
  5.   
  6. char *strndel(char *str, int start, int length)
  7. {
  8.    char temp[MAX_LEN];
  9.    int str_len = strlen(str);
  10.    if ((start+length) > str_len)
  11.      return NULL;
  12.    strncpy(temp, str, start);
  13.    temp[start] = '\0';
  14.    strcat(temp, str+start+length);
  15.    str = temp;
  16.    printf("temp is \n" );
  17.    return str;
  18. }
  19.  
  20. int main(void)
  21. {
  22.    char str[]="helloworld! I am Lau";
  23.    printf("Result is %s \n", strndel(str, 3, 3));
  24.    return 0;
  25. }

阅读(971) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~