#include using namespace std; int main() { char c1, c2, c3, c4, c5; c1 = 'C'; c2 = '+'; c3 = 'r'; c4 = 'o'; c5 = 'x'; cout << c1 << c2 << c2 << ' ' << c3 << c4 << c5 << '!' << endl; cout << "\n\n"; system( "PAUSE" ); // system( "PAUSE" ) is system dependent return( 0 ); }