fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <cstring>
  4. using namespace std;
  5.  
  6. void c_function(char * dest) {
  7. strcpy(dest, "FOOO");
  8. }
  9.  
  10.  
  11. template<std::size_t max>
  12. struct string_filler {
  13. char data[max+1];
  14. std::string & destination;
  15. string_filler(std::string & d) : destination(d) {
  16. data[0] = '\0'; // paranoia
  17. }
  18. ~string_filler() {
  19. destination = data;
  20. }
  21. operator char *() {
  22. return data;
  23. }
  24. };
  25.  
  26. int main() {
  27. string foo;
  28. c_function(string_filler<80>{foo});
  29. cout << "foo contains \"" << foo << "\"" << endl;
  30. return 0;
  31. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
foo contains "FOOO"