fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6. string str = "hi my name is rex";
  7. int i = 0;
  8. int len = str.length();
  9. while (i < len) {
  10. // cout << " blah ";
  11. cout << str[i];
  12. while (str[i] != ' ') ++i;
  13. while (str[i] == ' ') ++i;
  14. }
  15. }
Runtime error #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Standard output is empty