author | Markus Bröker<broeker.markus@googlemail.com> |
Sun, 22 Oct 2017 22:55:27 +0200 | |
changeset 172 | 43ae72f88d06 |
parent 140 | 05d42a3737a4 |
permissions | -rw-r--r-- |
140
05d42a3737a4
Comments corrected: misspellings and other trivial things
Markus Bröker <mbroeker@volpe.spectre.org>
parents:
137
diff
changeset
|
1 |
/** |
05d42a3737a4
Comments corrected: misspellings and other trivial things
Markus Bröker <mbroeker@volpe.spectre.org>
parents:
137
diff
changeset
|
2 |
* fun.c |
05d42a3737a4
Comments corrected: misspellings and other trivial things
Markus Bröker <mbroeker@volpe.spectre.org>
parents:
137
diff
changeset
|
3 |
* Copyright (C) 2010 Unknown IRC User |
05d42a3737a4
Comments corrected: misspellings and other trivial things
Markus Bröker <mbroeker@volpe.spectre.org>
parents:
137
diff
changeset
|
4 |
*/ |
05d42a3737a4
Comments corrected: misspellings and other trivial things
Markus Bröker <mbroeker@volpe.spectre.org>
parents:
137
diff
changeset
|
5 |
|
137
d8a0984b72fc
From a 'C-Professional' :) Take a look at the source and pray
Markus Brökers <mbroeker@largo.homelinux.org>
parents:
diff
changeset
|
6 |
#include <stdio.h> |
d8a0984b72fc
From a 'C-Professional' :) Take a look at the source and pray
Markus Brökers <mbroeker@largo.homelinux.org>
parents:
diff
changeset
|
7 |
|
d8a0984b72fc
From a 'C-Professional' :) Take a look at the source and pray
Markus Brökers <mbroeker@largo.homelinux.org>
parents:
diff
changeset
|
8 |
int main (void) |
d8a0984b72fc
From a 'C-Professional' :) Take a look at the source and pray
Markus Brökers <mbroeker@largo.homelinux.org>
parents:
diff
changeset
|
9 |
{ |
d8a0984b72fc
From a 'C-Professional' :) Take a look at the source and pray
Markus Brökers <mbroeker@largo.homelinux.org>
parents:
diff
changeset
|
10 |
int i; |
d8a0984b72fc
From a 'C-Professional' :) Take a look at the source and pray
Markus Brökers <mbroeker@largo.homelinux.org>
parents:
diff
changeset
|
11 |
|
d8a0984b72fc
From a 'C-Professional' :) Take a look at the source and pray
Markus Brökers <mbroeker@largo.homelinux.org>
parents:
diff
changeset
|
12 |
for (i = 0; i < 4; ++i) |
d8a0984b72fc
From a 'C-Professional' :) Take a look at the source and pray
Markus Brökers <mbroeker@largo.homelinux.org>
parents:
diff
changeset
|
13 |
putchar (*((char *)(unsigned[]) { |
d8a0984b72fc
From a 'C-Professional' :) Take a look at the source and pray
Markus Brökers <mbroeker@largo.homelinux.org>
parents:
diff
changeset
|
14 |
558781766} +i)); |
d8a0984b72fc
From a 'C-Professional' :) Take a look at the source and pray
Markus Brökers <mbroeker@largo.homelinux.org>
parents:
diff
changeset
|
15 |
|
d8a0984b72fc
From a 'C-Professional' :) Take a look at the source and pray
Markus Brökers <mbroeker@largo.homelinux.org>
parents:
diff
changeset
|
16 |
return 0; |
d8a0984b72fc
From a 'C-Professional' :) Take a look at the source and pray
Markus Brökers <mbroeker@largo.homelinux.org>
parents:
diff
changeset
|
17 |
} |