How do I create a void function that will work as \"Press Any Key to Continue\" in C?
What I want to do is:
printf(\"Let the Battle Begin!\\n\"); printf(
Try this:-
printf("Let the Battle Begin!\n"); printf("Press Any Key to Continue\n"); getch();
getch() is used to get a character from console but does not echo to the screen.
getch()