<string.h>的学习

感觉学习代码库最好的方法就是运行一下。

下面附上结果和示例代码 

复制代码
#include <stdio.h>
#include <string.h>

int main(){
    const char * cs="Hello World";
    const char * ct="Hello";
    char * s=malloc(20);
    memset(s,0,20);
    char * t;
    int c='o';
    const size_t n=3;
    //strcpy(s,ct);
    printf("const char * cs=Hello World;\n\
    const char * ct=Hello;\n\
    int c=o;\n\
    const size_t n=3;\n\
    ");
    printf("=============================================\n");
    printf("\tthe result of strcpy(s,ct) is: %s\n",strcpy(s,ct));
    t=strncpy(s,ct,n);
    *(t+n)='\0';
    printf("\tthe result of char * strncpy(s,ct,n) is: %s\n",t);
    memcpy(s,ct,strlen(ct));//copy ct to s
    printf("\tthe result of char * strcat(s,ct) is: %s\n",strcat(s,ct));
    printf("\tthe result of char * strchr(cs,c) is: %s\n",strchr(cs,c));
    printf("\tthe result of char * strrchr(cs,c) is: %s\n",strrchr(cs,c));
    printf("\tthe result of size_t strspn(cs,ct) is: %d\n",strspn(cs,ct));
    printf("\tthe result of char * strpbrk(cs,ct) is: %s\n",strpbrk(cs,ct));
    printf("\tthe result of size_t strlen(cs) is: %d\n",strlen(cs));
}
复制代码

 结果如下:

image

posted @   陈哈哈  阅读(300)  评论(0编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· [AI/GPT/综述] AI Agent的设计模式综述
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
点击右上角即可分享
微信分享提示