#include // this is a demo c++ program. // // For testing my new code display system. // using namespace std; const string GREETING{"Hello World!"}; int main() { printf("%s\n", GREETING); cout << GREETING << endl; return 0; }