C库函数 - toupper() C库函数 - tolower() C库宏 - errno C库函数 - toupper() #include <stdio.h> #include <ctype.h> int main () { int i = 0; char c; char str[] = "Tutorials Point"; while(str[i]) { putchar (toupper(str[i])); i++; } return(0); } C库函数 - tolower() C库宏 - errno