I have the dev c++ downloaded and ready to use. When I compile and run and program I can't see the output. How do i get the output to not just flash by, but get it to where i can see it?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have Dev C++ installed and ready to use, but when I compile and run a program, the output window flashes by too quickly for me to see the results. How can I make the output window stay open long enough for me to view the program's output? Is there a specific method to pause or delay the closing of the console so I can review the results properly?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have the dev c++ downloaded and ready to use. When I compile and run and program I can't see the output. How do i get the output to not just flash by, but get it to where i can see it?
Try system("PAUSE"); before return 0; with #include "stdlib.h"
or getchar(); with #include "stdio.h". See also Introductions in C!
I have Dev C++ installed and ready to use, but when I compile and run a program, the output window flashes by too quickly for me to see the results. How can I make the output window stay open long enough for me to view the program's output? Is there a specific method to pause or delay the closing of the console so I can review the results properly?