fork download
  1. #include <cstring>
  2.  
  3. void SetStr(char* s, char c)
  4. {
  5. std::memset(s, c, std::strlen(s));
  6. }
  7.  
  8. int main()
  9. {
  10. }
Success #stdin #stdout 0s 4500KB
stdin
Standard input is empty
stdout
Standard output is empty