ok i know this has been covered before but i can't find it anywhere. when i enter this code:
Code:
#include <windows.h>

int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
                    PSTR szCmdLine, int iCmdShow)
{
	MessageBox(0, "World", "Hello",0);

	return 0;
}
into DevC++ the exe is 4kb but when i enter the same code into MSVC++ the exe is 24kb. why does msvc++ change the size so much? thanks.