Contact: aviboots(AT)netvision.net.il
41,219 questions
53,721 answers
573 users
#include <stdio.h> #include <string.h> int main() { char buffer[64] = ""; strcat(buffer, "c "); // strcpy(buffer, "c "); strcat(buffer, "programming"); printf("%s", buffer); return 0; } /* run: c programming */