自己实现字符串操作api

自己实现字符串操作api一

#include <stdio.h>
#include <stdlib.h>
void myputs(char *p) // 除了变量声明 定义以外·,都是运算符
{
  // 字符串的明显特点;结尾有'\0'
  while(*p !='\0'){
    //putchar(*p++);
    printf("%c",*p++);  
  }
  putchar('\n');
}
int mygets(char *p)
{   
    int cnt = 0;
    if(p==NULL){
       printf("内存非法");
       return;
    }
    while(*p=getchar()){
      if(*p=='\n'){
          return cnt;      
      }else{
          cnt++;
          p++;      
      }    
    }
}

int mystrlen(char *str)
{
    int cnt = 0;
   while(*str != '\0'){
      cnt++;   
      str++;
   }
       return cnt;

}
void myMemset(char *p,char c,int size)
{
    while(size){
        *p++;
        size--;
             
    }


}
int main()
{   
    char *str = NULL;
    str = (char *)malloc(128);
    myMemset(str,'a',128);
    str[128] = '\0';    
    myputs(str);
    
    //char str[128] = {'\0'};
	char *p = "chenlichen";
    printf("长度;%d\n",mystrlen(p));
    myputs(p);
    myputs("请输入你的字符串;");
    int n = mygets(str);
    printf("你输入的字节数是;%d\n",n);
    myputs(str);
	system("pause");
	return 0;
}

自己实现字符串操作api 二

#include <stdio.h>
#include <stdlib.h>
void myputs(char *p) // 除了变量声明 定义以外·,都是运算符
{
  // 字符串的明显特点;结尾有'\0'
  while(*p !='\0'){
    //putchar(*p++);
    printf("%c",*p++);  
  }
  putchar('\n');
}
int mygets(char *p)
{   
    int cnt = 0;
    if(p==NULL){
       printf("内存非法");
       return;
    }
    while(*p=getchar()){
      if(*p=='\n'){
          return cnt;      
      }else{
          cnt++;
          p++;      
      }    
    }
}

int mystrlen(char *str)
{
    int cnt = 0;
   while(*str != '\0'){
      cnt++;   
      str++;
   }
       return cnt;

}
void myMemset(char *p,char c,int size)
{
    while(size){
        *p++;
        size--;
             
    }


}
int main()
{   
    char *str = NULL;
    str = (char *)malloc(128);
    myMemset(str,'a',128);
    str[128] = '\0';    
    myputs(str);
    
    //char str[128] = {'\0'};
	char *p = "chenlichen";
    printf("长度;%d\n",mystrlen(p));
    myputs(p);
    myputs("请输入你的字符串;");
    int n = mygets(str);
    printf("你输入的字节数是;%d\n",n);
    myputs(str);
	system("pause");
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小王 -挺忙

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值