Contact: aviboots(AT)netvision.net.il
41,656 questions
54,319 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 */