What is a macro in C Preprocessor?

Submitted by: Muhammad
A macro is a preprocessor directive that provides a mechanism for token replacement in your source code. Macros are created by using the #define statement. Here is an example of a macro:
#define VERSION_STAMP "1.02"
Submitted by: Muhammad

Read Online C Preprocessor Job Interview Questions And Answers