When my cpp file uses #include to add some header, does my final program\'s size gets bigger? Header aren\'t considered as compilation units, but the content of
With modern compilers included files only affect the binaries size if they contain static data or if you use normal or inline function that are defined in them.