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 2.#include
#include
using namespace std;
int main(){
string inputText;
char secondLetter;
getline(cin, inputText);
cin >> secondLetter;
/* Your code goes here */
cout << inputText << endl;
return 0;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!