I'm trying to get C++ to work in NetBeans, the code builds fine but then throws
RUN FAILED (exit value -1,073,741,701, total time: 125ms).
How do I fix this?
I reinstalled the Cygwin compiler for 32 bit, and remapped the environment variables.
#include <iostream>
#include <cstdlib>
using namespace std;
int main() {
cout << "Hi";
return 0;
}
Result: RUN FAILED (exit value -1,073,741,701, total time: 125ms) Expected: Hi