fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. char *name[] = { "Illegal month", "Jan", "Feb", "Mar" };
  7. cout << name[2][1] << endl;
  8. *name[2] = 'Apr';
  9. cout << name[2][1] << endl;
  10. return 0;
  11. }
Runtime error #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
e