 
 
 
 
 
   
Explanation
alpha = 0.1;
alpha          =      0.1         ;
         alpha
      =
0.1
;
But note that the followigs are not;
n += popSizeIncrement ; /* correct */ n += popSize Increment ; /* syntax error */ n + = popSizeIncrement ; /* syntax error, "+='' is one unit */
Before the compiler try to understand the source code, pre-processor will execute these commands.
You can't assign or change the value of a constant in the program.
CONST = CONST + 1 ; /* NOT ALLOWED */
 
 
 
 
