fork download
  1. #include <stdio.h>
  2. #include <ctype.h>
  3.  
  4. int main()
  5. {
  6. unsigned char s[] = "AbS.d_";
  7.  
  8. tolower(s);
  9. printf("%s\n", s);
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
AbS.d_