condensed f2

This commit is contained in:
Vincent Batts 2011-11-14 10:21:00 -05:00
parent 0ad2b60a9d
commit 22e40e06d6
1 changed files with 1 additions and 8 deletions

9
f2.c
View File

@ -1,8 +1 @@
main() {
int t;
for (t=0;;t++) {
putchar(t*((t>>12|t>>8)&63&t>>4));
}
}
main(t){for(t=0;;t++)putchar(t*(((t>>12)|(t>>8))&(63&(t>>4))));}