Multiple choice Using macros instead of function decreases the size of the executable program. True False Reveal answer Fill a bubble to check yourself B Correct answer Explanation Macros are expanded inline by the preprocessor. This replaces the function call with the macro code, which can increase the size of the executable (code bloat) compared to a single function definition.