I\'m trying to make a simple command that pauses for user input. I think it\'ll be useful in Bash scripts.
Here\'s my code:
#include
This is a simple method that worked for me on Windows 10:
#include void pause(void); int main(void) { printf("Testing pause."); } void pause(void) { system("pause"); }