C语言转换大小写

 

  
  
  
  
  1. #include <stdio.h>  
  2. #include <ctype.h>  // Contains the tolower prototype  
  3. void main (void)  
  4. {  
  5.     int letter;   
  6.     for (letter = getchar(); ! feof(stdin); letter = getchar())  
  7.         putchar(tolower(letter));  
  8. }  

 

  
  
  
  
  1. #include <stdio.h>  
  2. #include <string.h>  
  3.  
  4. void main (void)    
  5. {  
  6.     char line[255];  // Line of text read     
  7.     while (fgets(line, sizeof(line), stdin))  
  8.         fputs(strupr(line), stdout);  
  9. }  
  10.  

 

你可能感兴趣的:(C语言,void)