fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void)
  5. {
  6. char first [] ="nigga";
  7. char second [] ="what" ;
  8.  
  9. tolower(first);
  10. printf("%s\n" , first);
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5312KB
stdin
Standard input is empty
stdout
nigga