摘要:
相关函数: printf 头文件 : #include <stdio.h> 函数原型: int printf(const char *format, …); 函数说明: printf会根据参数format来转换并格式化数据,然后将结果写到标准输出 参数format可包含下列三种字符类型: 1. 直接 阅读全文
摘要:
相关函数: fopen 头文件 : #include <stdio.h> 函数原型: FILE *fopen(const char *path, const char *mode); 函数说明: 参数path字符串包含要打开的文件路径和文件名 参数mode代表打开的方式,含义如下: r 打开只读文件 阅读全文
摘要:
相关函数: open 头文件 : #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> 函数原型: int open(const char *pathname, int flags); int open(const char 阅读全文
摘要:
相关函数: ctime 头文件 : #include <time.h> 函数原型: char *ctime(const time_t *timeptr); 函数说明: 将参数timeptr所指向的time_t结构中的信息转换成时间日期表示方法,以字符串形式返回 返回值 : 指向包含时间信息的字符串的 阅读全文
摘要:
相关函数: strstr 头文件 : #include <string.h> 函数原型: char *strstr(const char *haystack, const char *needle); 函数说明: 在字符串haystack中查找字符串needle 返回值 : 返回指定字符串第一次出现 阅读全文
摘要:
相关函数: strlen 头文件 : #include <string.h> 函数原型: size_t strlen(const char *s); 函数说明: 计算指定的字符串s的长度,不包括结束符’\0’ 返回值 : 返回字符串s包含的字符数 阅读全文
摘要:
头文件 : #include <string.h> 函数原型: char *strncpy(char *dest, const char *src, size_t n); 函数说明: 将参数str指向的字符串前n个字符拷贝到参数dest所指向的地址 返回值 : 返回dest的值 阅读全文
摘要:
头文件 : #include <string.h> 函数原型: char *strcpy(char *dest, const char *src); 函数说明: 将参数str指向的字符串拷贝到参数dest所指向的地址 返回值 : 返回dest的值 阅读全文
摘要:
头文件 : #include <string.h> 函数原型: int strcmp(const char *s1, const char *s2); 函数说明: 比较参数s1和s2所指向的字符串 返回值 : 若字符串相等则返回0;若字符串s1大于字符串s2则返回大于0 的整数,否则返回小于0的整数 阅读全文
摘要:
头文件 : #include <string.h> 函数原型: int strncmp(const char *s1, const char *s2, size_t n); 函数说明: 比较参数s1和s2所指向的字符串的前n个字符 返回值 : 若字符串相等则返回0;若字符串s1大于字符串s2则返回大 阅读全文