0
votes
Easy way to shift specific characters in a string in C++?
Slight fix to the previous answer (shift to the right and assume '.' means "can move here"):
char text[] = "...Z.Z.Z...";
for (int i = strlen(text) - 2); i > 0; --i) {
i …
