I need help with the goto function. whenever i set a label and click goto, it goes to that one...and only that one. if i put another label and set a goto and the name of that label as goto, it goes to the first ( here is an example).
Staraws: cout << "Hello" << endl;
goto Starasw;

JWRW: cout << "testing" << endl;
goto JWRW ( it goes to the first one though)

Here is the source code for my project if that will help.