Hello,
I am C++ beginner so my question can be fullish but I think it is worth to ask.
I made middle complicated gui with wx which after compiling produces exe about 120 kb.
I also try C programming for opening files, read/write structs and so and noone example produces exe file larger than 50 kb.
But, when I just include c++ header (even without using its functions) like <string>, <iomanip>, <fstream>, <iostream> and so file size of such program grows rapidly from 400kb+ to over a 800kb+ for wery little programs I tested.
Now, is this a normal behaviour or simply (what is in most cases) I dont adjust something on compiler options and what should I do to avoid those large files for small programs, if anything.
Thanks.