Thread: DEFINE in C
View Single Post
Team Leader
12May2007,18:02  
DaWei's Avatar
#define is a preprocessor statement. These operations are performed BEFORE the file is submitted to the compiler. In the case of a statement such as
Code:
#define THISTHING THATTHING
the token, THISTHING, is replaced in the text, everywhere it occurs, with THATTHING.