I've been trying to recreate a simple game of hangman. I came as far as I could without help, but recently I've run into a problem I don't know how to solve. This code can replace ( // a - u || e - y || w -c || v - b || x - d || z - f ))
or even duplicate these letters and I don't know why it does that. It'd be also really helpful if anyone could tell me if it was also possible to shorten this code, simplify it. To those who take a look and help me out. Thank you very much!
Some improvements you could make:
Get rid of all this old c style strings and use std::string.
Get rid of goto.
Break your main function into different functions.
Use meaningful variable names, prefer English so everyone can understand.