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(); +}