Does comments or spaces take any memory or slow the processing of the program some how? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Does comments or spaces take any memory or slow the processing of the program some how?

27th Jul 2016, 3:04 PM
João Pedro
João Pedro - avatar
3 Answers
+ 2
Before the assembly file is created there is another phase. In this phase the directives for compiler (#include, #define, etc) are interpreted. For example if you write #include <stdlib> all the file of lib is copied substituting the #include statement. In this phase happens two other things. 1) comment are removed and 2) the written line are transformed in logical lines (delete tabs and spaces). If you have instructions splitted on multiple lines they are merged togheter. So, in the end, spaces, tabs and comments dont slow your program.
27th Jul 2016, 6:07 PM
pasquale napolitano
pasquale napolitano - avatar
+ 1
i beliebe that comments don't get compiled into assembly , I might be wrong though.
27th Jul 2016, 4:06 PM
destro
0
thank you very much
27th Jul 2016, 6:29 PM
João Pedro
João Pedro - avatar