Running a program from the command prompt

Whenever I run my program in VS 2010, it runs fine, but I get an error ("...exe has stopped working") when I run it from the command prompt. If I have other libraries/headers included in my program, do I have to do something different when I run it from the command prompt?

I'm not including any code, because there's way too much of it, and I don't think it's strictly necessary.

Help would be much appreciated! Thanks in advance.
Some IDEs forces stack and or heap memory initialized to zero when launching a process. This "prevents" the programmer from detecting uninitialized pointers. Add assert() statement into your program.
(see http://www.cplusplus.com/reference/cassert/assert/?kw=assert)
Topic archived. No new replies allowed.