I thought I'd share this in case it helps anyone else. I'm running Dev-C++ on Windows 2000, and I was having trouble finding the output from printf(). Even after reading the faq's, etc, I couldn't get it to come out. Then I tried this: from a command prompt, run your exe like this:
C:\>time.exe > out.txt
Then all of the output stuff will go into the out.txt file, which you can read with notepad.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I thought I'd share this in case it helps anyone else. I'm running Dev-C++ on Windows 2000, and I was having trouble finding the output from printf(). Even after reading the faq's, etc, I couldn't get it to come out. Then I tried this: from a command prompt, run your exe like this:
C:\>time.exe > out.txt
Then all of the output stuff will go into the out.txt file, which you can read with notepad.