⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ttolower.c

📁 单片及c语言轻松入门的随书光盘
💻 C
字号:

#include <ctype.h>
#include <stdio.h> /* 为使用printf函数而加入 */
void tst__tolower ( char k) {
		if (isupper (k)) 
			k = _tolower (k);
}
void main()
{	char c='K';
	for(;;)
		tst__tolower(c);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -