From b5e0cb3da7ef51a4338bb34e92b324a18fcb528a Mon Sep 17 00:00:00 2001 From: PinalBhimani <31730129+BhimaniPinal@users.noreply.github.com> Date: Wed, 30 Oct 2019 10:09:56 +0530 Subject: [PATCH] Paint Hello in C language --- Hello.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Hello.c diff --git a/Hello.c b/Hello.c new file mode 100644 index 0000000..3025ca4 --- /dev/null +++ b/Hello.c @@ -0,0 +1,6 @@ +#include +#include +void main(){ + print("Hello"); + getch(); +}