fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. int main() {
  5. std::string txt("ala ma kota");
  6.  
  7. std::string first_word(txt, 0, txt.find_first_of(' '));
  8.  
  9. std::cout << first_word;
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 2984KB
stdin
Standard input is empty
stdout
ala