13 lines
178 B
C
13 lines
178 B
C
|
#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;
|
||
|
}
|