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