Macros in C Programming
The #define Directive for Macros In C, we define macros using “#define” preprocessor directive. Preprocessor directives in C always start with a “#” symbol. Preprocessor directives are used to accomplish macro expansion, file inclusions, conditional compilation, and other directives. Naming of Macros As a convention, macro names are written in upper case. Programs are easier […]
Macros in C Programming Read More »