My name is Tiago Silva
I am a hobbist programmer that likes to code just because I usually have nothing to do or want to make something useful to help others.
Discord: @thegameratort
A snippet of code for you to try out. π
#include <iostream>
#include <cstring>
static const char* input = "XQXQ,&),Ve^Y,^e]RUb,Rbbbbb";
int main() {
size_t input_size = strlen(input);
char* output = new char[input_size];
for (size_t i = 0; i < input_size; i++) {
char c = input[i];
if (c == 0x2C) {
output[i] = static_cast<char>(0x20);
} else {
output[i] = static_cast<char>(c + 0x10);
}
}
std::cout << output;
delete[] output;
return 0;
}