aboutsummaryrefslogtreecommitdiffstats
path: root/undefined.c
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2015-05-01 13:33:58 +0100
committerTomasz Kramkowski <tk@the-tk.com>2015-05-01 13:33:58 +0100
commit2b744b571515645456946b58444d68ab47b02659 (patch)
tree7fb10dc448116b7c82b972f1e181648ed782da4a /undefined.c
parent982705cc279fce7591536d23653ed3819dd37f01 (diff)
downloadc-stuff-2b744b571515645456946b58444d68ab47b02659.tar.gz
c-stuff-2b744b571515645456946b58444d68ab47b02659.tar.xz
c-stuff-2b744b571515645456946b58444d68ab47b02659.zip
sdl.c, undefined.c, md5.c
Diffstat (limited to 'undefined.c')
-rw-r--r--undefined.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/undefined.c b/undefined.c
new file mode 100644
index 0000000..38977d8
--- /dev/null
+++ b/undefined.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+
+int main(void)
+{
+ int i = 0;
+
+ printf("%d %d %d %d\n", i, i++, i, i++);
+
+ return 0;
+}