#include #include int main() { char str[10]; for (int i=0; i<3; i++) str[i]='A'+i; str[3]='\0'; strcat(str, "defghijkjlmn"); printf("%s\n", str); }