Programming C

作者: AmberXiao | 来源:发表于2018-04-16 21:56 被阅读0次

    gettimeofday

    %d=int
    %ld=long
    %lld=long long
    
    include <sys/time.h>
    int gettimeofday(//获得精确时间
     struct timeval *tv,
     struct timezone *tz
    );
    struct timeval{
      long int tv_sec; // 秒数
      long int tv_usec; // 微秒数
    }
    struct timezone{//timezone 参数若不使用则传入NULL即可
      int tz_minuteswest;/*格林威治时间往西方的时差*/
      int tz_dsttime;/*DST 时间的修正方式*/
    }
    

    执行成功返回0,失败返回-1,错误代码存于errno中。

    字符串操作

    bzero

    include <string.h>
    void bzero( void *s, int n);//将字符串的前n个字节置为0,包括‘\0’。
    

    assert

    include  <assert.h>
    void assert(int expression);
    

    判断expression,如果条件为假,则向stderr打印一条错误信息,并终止程序。
    常见用法:
    1.在函数开始处检验传入参数的合法性
    2.每个assert只检验一个条件
    3.不能使用改变环境的语句
    4.频繁调用会极大影响程序的性能,增加额外开销。在调试结束后,可以在#include<assert.h>之前插入#define NDEBUG来禁用assert函数
    参考网站:https://blog.csdn.net/qq_32175379/article/details/70312657
    sprintf

    include<stdio.h>
    int sprintf(//将格式化的数据写入某个字符缓冲区
      char *buffer,//要写入的字符缓冲区
      const char *format,//指定格式
      [argument]......//其他参数
    );
    

    参考:https://blog.csdn.net/sjf331/article/details/339254
    atoi

    include<string.h>
    int atoi(const char *str);
    

    将字符串转为整型
    strcat

    include<string.h>
    char *strcat(
      char *dest,
      const char *src
     );
    

    把src所指的字符串添加到dest结尾处,返回dest指针
    注意:src和dest所指的内存区域不能重叠,且dest必须由足够的空间容纳src的字符串
    strchr

    #include <string.h>
    char *strchr(const char *s,char c);
    

    查找字符串s中首次出现字符c的位置,返回首次出现c的位置的指针,如果s中不存在c则返回NULL。
    strcmp

    #include <string.h>
    int strncmp(const char *str1, const char *str2, n);
    

    两个字符串的比较。
    比较str1和str2前n个字符的大小,若相等返回0,否则返回str1-str2的值。
    遇到'\0'时会中止比较。
    memcmp

    int memcmp(const char *str1, const char *str2, size_t n);
    

    两个内存块内容的比较。
    比较str1和str2前n个字节的大小。返回值同上。
    http://www.runoob.com/cprogramming/c-function-memcmp.html
    atoi

    #include <stdlib.h>
    int atoi(const char *s);
    

    将字符串转成整型。
    strtol

    long int strol(
      const char *str,//需要转换的字符串
      char **end,//停止位的指针位置
      int base//权值
    );
    

    根据权值将字符串str中的数字转换成长整形,**end指向第一个非法字符的位置。
    base的范围:0,2-36。其值决定了合法字符的范围。
    例子:

    char buffer[20]="10379cend$3";
    char *stop;
    printf("%d/n",strtol(buffer, &stop, 2));
    printf("%s/n", stop);
    

    输出结果:
    2
    379cend$3
    strol可以忽略字符串开头和结尾的空格,但字符串中间的字符串会被当作非法字符。

    https://blog.csdn.net/fuyuehua22/article/details/39081587

    内存分配

    include <stdlib.h>
    include <malloc.h>
    void *malloc(usigned int size)
    //分配size大小的连续空间,成功返回指针,失败返回NULL,
    //使用前要初始化,使用结束后需要free
    void *calloc(size_t n, size_t size)
    //分配n和长度为size的连续空间,成功返回指针,失败返回NULL
    //自动初始化,使用结束后需要free
    void *realloc(void *addr, usigned int newsize)
    //给addr指向的内存块重新分配大小,返回新的基地址
    //自动释放旧的内存空间
    void *_alloc(size_t size)
    //在栈上分配内存空间
    //当调用_alloc的函数返回时,自动释放分配的内存
    //不具有可移植性
    

    文件操作

    include <stdio.h>
    int fseek(//用于移动文件流的读写位置
      FILE *stream,//文件描述符
      long offset,//偏移量,可以为负值
      int whence//起始点
    );
    
    whence值 含义
    SEEK_SET 文件开始处
    SEEK_CUR 当前位置
    SEEK-END 文件结尾处
    include<stdio.h>
    int ftell(//获得当前的读写位置,失败返回-1
      FIEL *sream//已经打开的文件指针
    );
    
    char *fset(//从文件中读取一行
      char *buf,//读取的数据缓存区
      int numsize,//读取的最大值
      FILE *fp//打开的文件流
    );
    如果文件中的该行,不足bufsize-1个字符,则读完该行就结束。
    如若该行(包括最后一个换行符)的字符数超过bufsize-1,则fgets只返回一个不完整的行,
    但是,缓冲区总是以NULL字符结尾,对fgets的下一次调用会继续读该行。
    
    include <stdio.h>
    int fputs(//向文件中写入字符串,不包括空字符
      char *str,//要写入的字符串
      FILE *fp//打开的文件指针
    );
    执行成功返回非负值,失败返回EOF
    

    相关文章

      网友评论

        本文标题:Programming C

        本文链接:https://www.haomeiwen.com/subject/ooedkftx.html