C语言转换大小写

#include <stdio.h>  
#include <ctype.h>  // Contains the tolower prototype  
void main (void)  
{  
    int letter;   
    for (letter = getchar(); ! feof(stdin); letter = getchar())  
        putchar(tolower(letter));  
} 

 

 

 

#include <stdio.h>  
#include <string.h>  
 
void main (void)    
{  
    char line[255];  // Line of text read     
    while (fgets(line, sizeof(line), stdin))  
        fputs(strupr(line), stdout);  
}  

 

 

本文出自 “阿凡达” 博客,请务必保留此出处http://shamrock.blog.51cto.com/2079212/878528

posted @ 2014-08-10 10:07  商商-77  阅读(194)  评论(0)    收藏  举报