+ 1
what does whitespace actually mean in programming lang.
.
3 ответов
+ 8
Nothing.. they are useful for humans, for readability.
When you compile, first the preprocessor leave those spaces and do some other stuffs, like include sources..
#include <iostream > //is a preprocessor directive.
or define..
#define MaxValue 10000// PP substitute MaxValue with 10000
After PP steps the compiler do its stuffs.
+ 7
its just spaces in your code
example
int i = 123;
int i =[.............ignored..........]123;
0
can you please delete the duplicates of this question?