fork download
  1. /* 大文字を小文字に変換する */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. char a;
  8. a=97;
  9. a=a-32;
  10.  
  11. printf("%c\n", a);
  12. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
A