#include<iostream> #include<cstring> using namespace std; int main() { char first[500]; cout<<"what is your favorite word : "; cin>>first; cout<<(strcat(first," Is a good choice"))<<endl; cout<<"Size ;"<<(strlen(first)); return 0; }