Question: Given string inputText on one line and character secondLetter on a second line, change the second character of inputText to secondLetter . Ex: If the
Given string inputText on one line and character secondLetter on a second line, change the second character of inputText to secondLetter
Ex: If the input is:
cheetah
C
then the output is:
cCeetah
Note: Assume the length of string inputText is greater than or equal to #include
#include
using namespace std;
int main
string inputText;
char secondLetter;
getlinecin inputText;
cin secondLetter;
Your code goes here
cout inputText 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
