fork download
  1. #include <iostream>
  2. using namespace std; // consider removing this line in serious projects
  3. int main() {
  4. cout<<"The C++14 Texas Ranger Program."<<endl;
  5. char x[80] = "Walker Was Injured On The Job";
  6. cout<<x<<endl;
  7. char y[80] = "Walker Is Currently Blind.";
  8. cout<<y<<endl;
  9. char z[80] = "Walker Got His Sight Back.";
  10. cout<<z<<endl;
  11. return 0;
  12. }
Success #stdin #stdout 0s 5292KB
stdin
1
2
10
42
11
stdout
The C++14 Texas Ranger Program.
Walker Was Injured On The Job
Walker Is Currently Blind.
Walker Got His Sight Back.