add random stuffs
This commit is contained in:
15
forkmeower.c
Normal file
15
forkmeower.c
Normal file
@@ -0,0 +1,15 @@
|
||||
// gcc forkmeower.c -o forkmeower -O3
|
||||
#include <unistd.h>
|
||||
#include <stdio.h>
|
||||
#define f fork()
|
||||
|
||||
#ifndef _Countof
|
||||
#define _Countof(a) (sizeof(a)/sizeof(a[0]))
|
||||
#endif
|
||||
|
||||
const char* meow[] = {"nya ", "miao ", "meow ", "mew ", ":3 ", "mrrp ", "miaow ", "prrr ", "mewp "};
|
||||
|
||||
int main() {
|
||||
fputs(meow[(f^f^f^f^f^f^f^f)%_Countof(meow)], stdout);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user