int main()
{
again:
char test[256];
cout <<"Please enter a word: ";
cin.get(test,256);
cout <<"you said" <<test;
goto again;
getch();
return 0;
}


It keep getting flooded once I enter a word, what would i expected is wait for keep press [cin.get()] again every time its loop.

for example:

1.
Please enter a word: girls
you said girls

2.
Please enter a word: love
you said love

3.
Please enter a word: sex
you said sex

and so on by loop.