I'm having a problem in visual c++ 2010 express, when I try to run my code it runs well, but when I close it, it runs again. So I think the problem was in my code, so I try a very basic code like this.
#include <iostream>
int main()
{
std::cout << "test" << std::endl;
return 0;
}
then I try to reset the vc++ settings, but still the .exe is runnning 2x even in the debugger. Then I try to reinstall but still the same problem. I try to import my .exe to other machine to see if it will run 2x, and yes, it runs again after I close it. So I hope someone here can help me fix this problem.