I never worked with wxDev, but most likely you are not running your code in a debug mode.
What is the specific problem? I think I can help you since I have some experience with DEV. But it is too old, which hasn't been updated for long.
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
cout << "hello world" <<endl;
system("PAUSE");
return EXIT_SUCCESS;
}
This is really weird. I think there is some problem with my compiler comfiguration. When I debugged the hello world again, there popped up a windows saying someting about debug information and asked if I want to add debug information(I dont recall exactly what it says). And I clicked yes. The hello world program stops at my breakpoint this time. However, when i went back to my previous program, the problem was still there.Probably you either haven't compiler your code with debugging symbols included in or, on the other extreme, maybe you turned on such a level of optimization that the code you're trying to insert a breakpoint in is optimized out. But - it would be much better if you could create some small project and post here, with an explanation on what would be the exact sequence of steps to reproduce your problem - this way other people would be able to check, and eventually try to help.
Thanks, Tsotne. For example, the code is:
I add a breakpoint at the line cout << "hello world" and I expect my program to stop at this line. However, my compiler goes directly to the end of the program and does not stop anywhere.Code:#include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { cout << "hello world" <<endl; system("PAUSE"); return EXIT_SUCCESS; }
is there going to be a 2011 version ?
is there going to be a 2011 version ?
There will be like that: VS_VERSION E (2011, infinity)is there going to be a 2011 version ?