#include #include int main() { char str1[100] = "Programlamayi "; char str2[] = "seviyoruz!"; strcat(str1,str2); puts(str1); puts(str2); }