📄 to_upper.c
字号:
/*# proc: to_upper - takes the integer value of an ASCII character, and if the# proc: character is lowercase, converts it to uppercase.*/#include <stdio.h>/*************************************************************/to_upper(c)int c;{ if((c >= 'a') && (c <= 'z')) c -= 0x20; return(c);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -