// en C++ #include using namespace std; int main(void) { int i = 5; char* str = "Hello"; double x = 3.14; cout << i << str << x << endl; return 0; }