I'm trying to make a Python program that interfaces with a different crashy process (that's out of my hands). Unfortunately the program I'm interfacing with doesn't even crash reliably! So I want to make a quick C++ program that crashes on purpose but I don't actually know the best and shortest way to do that, does anyone know what to put between my:
int main() { crashyCodeGoesHere(); } to make my C++ program crash reliably
asm { cli; };*((char*)-1) = 'x';code to induce a crash in order to debug read more in my answer here