started C stuff

This commit is contained in:
2026-04-20 17:01:38 +02:00
parent e507aa80ac
commit 9a1c3cdb71
2 changed files with 44 additions and 11 deletions

12
src/C/newcow.c Normal file
View File

@@ -0,0 +1,12 @@
#include <stdio.h>
int main() {
const char *cow = " ^__^\n"
" (oo)\\_______\n"
" (__)\\ )\\/\\\n"
" ||----w |\n"
" || ||\n";
printf("%s", cow);
return 0;
}