summaryrefslogtreecommitdiff
path: root/reference/C/CONTRIB/SNIP/weird.c
diff options
context:
space:
mode:
Diffstat (limited to 'reference/C/CONTRIB/SNIP/weird.c')
-rwxr-xr-xreference/C/CONTRIB/SNIP/weird.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/reference/C/CONTRIB/SNIP/weird.c b/reference/C/CONTRIB/SNIP/weird.c
new file mode 100755
index 0000000..2934350
--- /dev/null
+++ b/reference/C/CONTRIB/SNIP/weird.c
@@ -0,0 +1,13 @@
+#include<stdio.h>
+
+char *c[] = { "ENTER", "NEW", "POINT", "FIRST" };
+char **cp[] = { c+3, c+2, c+1, c };
+char ***cpp = cp;
+
+void main()
+{
+ printf("%s", **++cpp);
+ printf("%s ", *--*++cpp+3);
+ printf("%s", *cpp[-2]+3);
+ printf("%s\n", cpp[-1][-1]+1);
+}