fork download
  1. #include <iostream>
  2. using namespace std; // consider removing this line in serious projects
  3.  
  4. int main() {
  5. cout<<"The C++14 Program For Today!"<<endl;
  6. char x[80] = "Today Is Thursday October 24, 2024!";
  7. cout<<"X "<<x<<endl;
  8. return 0;
  9. }
Success #stdin #stdout 0.01s 5272KB
stdin
1
2
10
42
11
stdout
The C++14 Program For Today!
X Today Is Thursday October 24, 2024!