Contact: aviboots(AT)netvision.net.il
40,904 questions
53,356 answers
573 users
#include <stdio.h> #include <string.h> int main(void) { char s[] = "c c++ java"; char x[20]; strcpy(x, s); printf("%s\n", x); return 0; } /* run: c c++ java */