fork download
  1. #include <string>
  2. using namespace std;
  3.  
  4. const string MY_STRINGS[3] = { "A", "B", "C" };
  5.  
  6. int main() {
  7. const string SOME_STRINGS[3] = MY_STRINGS;
  8. MY_STRINGS[1] = MY_STRINGS[2];
  9. }
Success #stdin #stdout 0.01s 2852KB
stdin
Standard input is empty
stdout
Standard output is empty