// hello2.cpp // Ohjelma tulostaa tekstin Hello world! #include const char *TERVE = "Hello "; const char *MAAILMA = "world"; int main(void) { cout << TERVE << MAAILMA << "!" << endl; return 0; }