Process terminated with status -1073741510

Jan 4, 2017 at 4:05pm
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.
Jan 4, 2017 at 5:16pm
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 Jan 4, 2017 at 5:20pm
Jan 4, 2017 at 5:16pm
We'll have to see your code to help you.

-VX
Jan 4, 2017 at 7:13pm
This should not occur with C++14.

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