It's me again. :|
This is the only error I need to fix.
FIRST RUN.
Start:
cout << "Enter number ";
cin.getline (idnum,49);
cout << "Enter your full name : ";
cin.getline (name,49);
goto Start:
OUTPUT :
Enter number :
Enter your full name :
SECOND RUN (goto Start:)
OUTPUT :
Enter number:Enter your full name:
That thing happens~
Even if I remove goto statement, and replace it with main (), return main
Nothing changes ~.~