/* en C */ #include int main(void) { int i = 5; char* str = "Hello"; double x = 3.14; printf("%d%s%f\n", i, str, x); return 0; }