I am using DevC++ (mingw32 port of gcc I believe, version 3.2) and when ever I compile a program using the iostream library the exe is usally around 440Kb, while using stdio it is only like 26Kb. Is this normal, if not can anyone tell me the setting on how change this? Thank you in advance for your help.

Code:
#include <iostream>
using namespace std;

int main()
{
cout <<"When this program is compiled the exe is around 440KB.";
return 0;
}
Code:
#include <stdio.h>

int main()
{
printf("When this program is compiled the exe is around 26KB.");
return 0;
}