#include <iostream>
#include <windows.h>

int main(void)
{
HANDLE input;

input=GetStdHandle(STD_INPUT_HANDLE);

SetConsoleMode(input, ENABLE_PROCESSED_INPUT); // This is the function that sets ctrl+C as an exit code

Sleep(5000);
return 0;
}


How do I change that to a different exit code?