Question: Given string strInput on one line and character suffix on a second line, append suffix to strInput. Ex: If the input is: Fuzzy bear !
Given string strInput on one line and character suffix on a second line, append suffix to strInput.
Ex: If the input is:
Fuzzy bear
then the output is:
Fuzzy bear! #include
#include
using namespace std;
int main
string strInput;
char suffix;
getlinecin strInput;
cin suffix;
Your code goes here
cout strInput endl;
return ;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
