C Preprocessor Question: Download C Preprocessor PDF

What is a macro in C Preprocessor?

Tweet Share WhatsApp

Answer:

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"

Download C Preprocessor PDF Read All 33 C Preprocessor Questions
Previous QuestionNext Question
What is typedf?If you know then define #pragma?