21-02-2015, 01:13
Uncommenting a line means remove the double slash at the beginning of the line.
EX:
//#define Local_TestMode -> This line is a comment, its content will not be processed by the compiler
#define Local_TestMode -> This line is not a comment, its content will be processed by the compiler
EX:
//#define Local_TestMode -> This line is a comment, its content will not be processed by the compiler
#define Local_TestMode -> This line is not a comment, its content will be processed by the compiler

