Questions (continued)
#define is used to define a manifest constant at the top of a source code file.
#define is handled by the preprocessor
The preprocessor searches out text listed by the #define, and replaces it with whatever text follows the defined name
e.g.,
#define HRS_TO_SEC 3600
#define MIN_TO_SEC 60