what does whitespace actually mean in programming lang. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

what does whitespace actually mean in programming lang.

.

9th Mar 2018, 7:40 AM
Mayank Raj
Mayank Raj - avatar
3 Answers
+ 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.
9th Mar 2018, 8:39 AM
AZTECCO
AZTECCO - avatar
+ 7
its just spaces in your code example int i = 123; int i =[.............ignored..........]123;
9th Mar 2018, 7:46 AM
D_Stark
D_Stark - avatar
0
can you please delete the duplicates of this question?
9th Mar 2018, 7:44 AM
johan beimers
johan beimers - avatar