Contact: aviboots(AT)netvision.net.il
39,948 questions
51,890 answers
573 users
#include <iostream> using namespace std; #define SIZE 32 int main() { char s[SIZE] = "abc " "defg " "hijk"; cout << s << endl; return 0; } /* run: abc defg hijk */