filmov
tv
Preprocessor | Part-1 | Directives | Simple Macro Substitution |C Programming | Bengali

Показать описание
The preprocessor is a program that processes the source code before it passes through the compiler. All preprocessor commands begin with a hash symbol (#).
Simple Macro Substitution
#define COUNT 100
#define FALSE 0
#define PI 3.142
#define SIZE sizeof(int)*4
#define X 32-14
Simple Macro Substitution
#define COUNT 100
#define FALSE 0
#define PI 3.142
#define SIZE sizeof(int)*4
#define X 32-14