最新C语言大写字母如何转小写?

方法1:使用标准库函数tolower()C标准库提供了tolower()函数(在<ctype.h>中定义),可以直接将字符转换为小写,#include<stdio.h>#include<ctype.h>intmain(){charupper='……

目录[+]