fork download
  1. /* Demonstrasi karakter dan string */
  2.  
  3. #include <stdio.h>
  4. #include <iostream>
  5. #include <string.h>
  6. using namespace std;
  7.  
  8. int main(){
  9. string str;
  10. cin >> str;
  11. for(int i = 0; i <str.length(); i++)
  12. str[i] = tolower(str[i]);
  13.  
  14. cout << str << '\n';
  15. }
  16.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout