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);
|
2022-02-07 15:16:26 -05:00
|
|
|
}
|