summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/05/main.c b/05/main.c
index b2f9976..bae28af 100644
--- a/05/main.c
+++ b/05/main.c
@@ -1,2 +1,11 @@
+#define funciton( h, \
+ i, j ) h##ello * 2 * i##ello * j##ello
+int hello = 7;
int main() {
+ int x = funciton(
+ h,
+ h,
+ h
+ );
+ int y = funciton(h,h,h);
}