// Assignment06.cpp : Defines the entry point for the consoleapplication.
//
#include
#include using namespace std;
int main()
{
string s = \"this is a test, this is also a test, this is yetanother test\";
int strLen = 0;
strLen = s.length();
// code will go here
cout << s << endl;
return 0;
}
Add code to capitalize all of the lowercase ‘t’s. The problemmay be simple, but the solution may be a bit tricky.