From ed0fa503bc668122bf0af1dc38dce191fca7b567 Mon Sep 17 00:00:00 2001 From: Deepak747884 <31439607+Deepak747884@users.noreply.github.com> Date: Mon, 29 Oct 2018 15:22:20 +0530 Subject: [PATCH] Create hello_fun.c --- hello_fun.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 hello_fun.c diff --git a/hello_fun.c b/hello_fun.c new file mode 100644 index 0000000..cf0b1f3 --- /dev/null +++ b/hello_fun.c @@ -0,0 +1,12 @@ +#include +#include + +void main() +{ + int i; + for (i = 0; i < 10; i++) + { + printf("Hello World....!\n"); + } + getch(); +}