CPP
cpp
1
2
3
4
5
6
7
8
#include <iostream>
using namespace std;
int main() {
string test = "yeet";
/* say for example I want to change letter three (e) of the string to another letter or otherwise manipulate it. */
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run