I have a big program (I think, this is my first real game, its a little over 800 lines), and while the code itself is error free, because of how I designed it (see below) its very messy and I'm guessing inefficient.
So I'm wondering what sites/forums would be a good place to ask for someone to look it over and just point out to me any parts of it that are syntatically messy, ie:
int x = 0;
START:
x++;
if(x < 100) goto START;
should be
for(int x = 0; x < 100; x++){}
Or any parts that could be made more efficient. I use C++ for the majority, but I am open to using other languages to create certain parts of the program.