From a89a8ae8735dd8b11e165838c32cee1b0289d158 Mon Sep 17 00:00:00 2001 From: Rupesh Kumar <53085031+Kumarrupesh2310@users.noreply.github.com> Date: Fri, 7 Oct 2022 21:14:40 +0530 Subject: [PATCH] Added a c prgram for printing hello world. --- C/helloworld.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 C/helloworld.c diff --git a/C/helloworld.c b/C/helloworld.c new file mode 100644 index 00000000..fabe4b4b --- /dev/null +++ b/C/helloworld.c @@ -0,0 +1,5 @@ +#include +#inclde + void main(){ + printf("Hello Ayush"); + } \ No newline at end of file