摘要: 一、大写转小写 参数:char指针或者char数组 功能:如果传入参数包含大写字母,将其转换成小写字母,其他字符保持不便; 1 #include <stdio.h> 2 #include <string.h> 3 4 char* CapToLow(char *data) 5 { 6 int i=0; 阅读全文
posted @ 2019-10-29 17:13 谁的小流浪 阅读(2421) 评论(0) 推荐(0) 编辑