GCC C++ “Hello World” program -> .exe is 500kb big when compiled on Windows. How can I reduce its size?
The problem here is not so much with the library as it is with the way the library is linked. Granted, iostream is a moderately huge library but I don’t think it can be so huge as to cause a program to generate an executable that is 900KB larger than a similar one that uses … Read more