From 36834c376340524a36104847aedfa87eb5ce1f20 Mon Sep 17 00:00:00 2001 From: VARSHA K <43096171+varsha2000@users.noreply.github.com> Date: Thu, 15 Oct 2020 18:20:52 +0530 Subject: [PATCH] Create c# --- c# | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 c# diff --git a/c# b/c# new file mode 100644 index 0000000..8304dc0 --- /dev/null +++ b/c# @@ -0,0 +1,11 @@ +#include + +int printf(const char *format, ...); + +int main(void) +{ + int nb = 20; + + printf("Hello World !\n"); + printf("%d\n", nb); + printf("%s/%d\n", "Nice", 20);