fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. string s = "es snooze slyly against the furiously unusual ideas. furious";
  6. for(int i =0 ;i<s.length();i++)
  7. cout<<"'"<<s[i]<<"',";
  8. cout<<s.length();
  9. return 0;
  10. }
Success #stdin #stdout 0s 5504KB
stdin
Standard input is empty
stdout
'e','s',' ','s','n','o','o','z','e',' ','s','l','y','l','y',' ','a','g','a','i','n','s','t',' ','t','h','e',' ','f','u','r','i','o','u','s','l','y',' ','u','n','u','s','u','a','l',' ','i','d','e','a','s','.',' ','f','u','r','i','o','u','s',60