Using gcc mingw32 on windows, how could I make the most basic program possible? I want something with even less then std::cout << "Hello World";, I don't even want a console to launch. I don't want to interact with the rest of Windows in any way imaginable, no file manipulation, no user input, no output, nothing. I also don't want the code for this to even make it into the final product. I am looking for when I run it through a disassembler, it gives the least amount of lines possible. I understand that the program needs some overhead to deal with windows, but I am looking for a while to compile the bare minimum, smallest file size possible.