author | Markus Bröker <mbroeker@largo.dyndns.tv> |
Mon, 09 Sep 2013 15:51:32 +0200 | |
changeset 166 | ecd6492274ad |
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 |
} |