我想说这是C++吧不是C语言…
#include<iostream>
#include<string>
using namespace std;
int main()
{
cout<<"What's your favorite flower?"<<endl;
string flower;
cin>>flower;
string addon="s smell like old shoes";
cout<<flower+addon;
}
#include<iostream>
#include<string>
using namespace std;
int main()
{
cout<<"What's your favorite flower?"<<endl;
string flower;
cin>>flower;
string addon="s smell like old shoes";
cout<<flower+addon;
}



