fork download
  1. #include <algorithm>
  2. #include <initializer_list>
  3. #include <iostream>
  4. #include <iterator>
  5.  
  6. using namespace std;
  7.  
  8. int main() {
  9. char txt[2]{};
  10.  
  11. copy_n(begin({ '\x41', '\x42' }), sizeof(txt), begin(txt));
  12.  
  13. cout << txt[0] << ' ' << txt[1] << endl;
  14. }
Success #stdin #stdout 0s 4292KB
stdin
Standard input is empty
stdout
A B