From a 'C-Professional' :) Take a look at the source and pray
authorMarkus Brökers <mbroeker@largo.homelinux.org>
Mon, 09 Aug 2010 12:12:55 +0200
changeset 137 d8a0984b72fc
parent 136 d82f65e902d0
child 138 dff18d1ac2af
From a 'C-Professional' :) Take a look at the source and pray
Makefile
fun.c
--- a/Makefile
+++ b/Makefile
@@ -75,6 +75,7 @@
 TARGET += pipe
 TARGET += compliteral
 TARGET += getbits
+TARGET += fun
 
 .SUFFIXES: .c .cc .asm
 
@@ -342,6 +343,9 @@
 	@echo Linking $<...
 	@$(CC) -Wall -O2 -g -ggdb $(LDFLAGS) $< -o $@
 
+fun: fun.o
+	@echo Linking $<...
+	@$(CC) -Wall -O2 -g -ggdb $(LDFLAGS) $< -o $@
 
 .PHONY: beauty clean uninstall
 
new file mode 100644
--- /dev/null
+++ b/fun.c
@@ -0,0 +1,12 @@
+#include <stdio.h>
+
+int main (void)
+{
+    int i;
+
+    for (i = 0; i < 4; ++i)
+        putchar (*((char *)(unsigned[]) {
+                   558781766} +i));
+
+    return 0;
+}