1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <stdio.h>
#include <stdlib.h>

// A "macro" is a #define that takes ≥1 parameter.
//
// It works using a simple // text replacement.  Macros do
// not have a call stack of their own, as functions do.
// They happen before compilation or anything else.

#define TRIPLE(x) ((x) * 3)

#define ADD_5(x)  ((x) + 5)

// Rules for #define macros
// 1) Parenthesize each parameter in the definition.
// 2) Parenthesize entire experssion in the definition.

int main(int argc, char* argv[]) {

    printf("TRIPLE(5) ====== %d\n", TRIPLE(5));

    printf("TRIPLE(5 + 3) == %d\n", TRIPLE(5 + 3));
    
    return EXIT_SUCCESS;
}
/* vim: set tabstop=4 shiftwidth=4 fileencoding=utf-8 noexpandtab: */

© Copyright 2020 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.