📄 ttolower.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 + -