Process terminated with status -1073741510

What does this error in the build log mean
" Process terminated with status -1073741510 " , and when does it appear?
I use GNU GCC Compiler , my OS is Win8.1 64-bit and my codeblocks version is 10.05.
Three possibilities:
1) Your code possibly returned an uninitialized variable from main(),
2) or called exit() with an uninitialized variable,
3) or did not have a return statement at the end of main(). This should not occur with C++14.

Last edited on
We'll have to see your code to help you.

-VX
This should not occur with C++14.

AFAIK, nor with any standard version of C++.
Topic archived. No new replies allowed.