From f4cd5ca2865e064ec46ccc4869428d1ea8cbbe7a Mon Sep 17 00:00:00 2001 From: not_mine <not_mine@mail.mail> Date: Mon, 20 Nov 2023 17:19:58 +0000 Subject: [PATCH] Upload files to '' --- oneliner_buzz.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 oneliner_buzz.c diff --git a/oneliner_buzz.c b/oneliner_buzz.c new file mode 100644 index 0000000..c4568f0 --- /dev/null +++ b/oneliner_buzz.c @@ -0,0 +1,5 @@ +#include <stdio.h> + +int main(int x) { + return x>100?:(printf("%i\r%s%s\n",x,x%3?"":"Fizz",x%5?"":"Buzz"),main(x+1)); +}