Contact: aviboots(AT)netvision.net.il
39,914 questions
51,847 answers
573 users
#include <stdio.h> #include <string.h> int main() { char s1[50] = "c c++ "; char s2[] = "c# java"; strcat(s1, s2); printf("%s\n", s1); return 0; } /* run: c c++ c# java */