1
01/11/2023
Preprocessor
Introduction
2
01/11/2023
Continuing with #define : macros
3
01/11/2023
macros
j = SQR(5);
j = 5 * 5 ;
4
01/11/2023
macros
j = SQR(3+4);
j = 3 + 4 * 3 + 4;
5
01/11/2023
#define SQR(x) ((x) * (x))
6
01/11/2023
#undef
#define PI 3.14
….
….
#undef PI
7
01/11/2023
Some functions are actually macros
8
01/11/2023
Conditional compilation
area = PI * r * r;
#endif
9
01/11/2023
Conditional compilation
10
01/11/2023
Conditional compilation
area = PI * r * r;
#else
area = 3.14 * r * r;
#endif
11
01/11/2023
12
01/11/2023
Commenting out
code to be prevented
#endif
13
01/11/2023