lang-bootstrap/05/main.c

12 lines
155 B
C
Raw Normal View History

2022-02-07 16:33:27 -05:00
#define funciton( h, \
i, j ) h##ello * 2 * i##ello * j##ello
int hello = 7;
2022-02-06 20:00:30 -05:00
int main() {
2022-02-07 16:33:27 -05:00
int x = funciton(
h,
h,
h
);
int y = funciton(h,h,h);
}