c_mem_safety/macroname.c

13 lines
178 B
C
Raw Normal View History

#include <stdio.h>
/* Macro token-pasting operator example */
#define M(NAME) \
int NAME##_int;
int main() {
M(alma);
alma_int = 42;
printf("%d\n", alma_int);
return 0;
}