Aug 25, 2010 How To Connect Two Routers On One Home Network Using A Lan Cable Stock Router Netgear/TP-Link - Duration: 33:19. Richard Lloyd Recommended for you.
When I compile and run my programs in Dev C++, the output window opens and shows the output. Then instanlty the window flashes and disappears.
How do I make the window stay long enough for me to read the output??
Thanks
- 5 Contributors
- forum 12 Replies
- 6,872 Views
- 2 Days Discussion Span
- commentLatest Postby DuoasLatest Post
How To Pause The Output Screen In Dev C Free
twomers408
How To Pause The Output Screen In Dev C Pdf
The problem is (not really a problem), that the program is running too fast and doesn't have anything to stop it from closing. There are a number of options to solve this, most of them are mentioned here -- '>http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1043803465&id=1043284385 so if you're using C++ throw a cin.ignore();
and cin.get();
before you return 0;
at the end of your program