add random stuffs

This commit is contained in:
tema5002
2026-05-24 20:13:56 +03:00
parent 7c792bf4b2
commit a8e03c5e3b
14 changed files with 931 additions and 1 deletions

15
forkmeower.c Normal file
View 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;
}