From 036f5d164dc3cf1cfc7e99446fb2340c0bff3f0f Mon Sep 17 00:00:00 2001 From: njain794 <44344547+njain794@users.noreply.github.com> Date: Fri, 26 Oct 2018 10:46:23 +0530 Subject: [PATCH] Update cool.c your code did'nt have getch();/or return 0; which would terminate the function my piece of code can also be considered !!!!!!!!!!!!!!!! --- cool.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cool.c b/cool.c index 8aa99b1..5b337a7 100644 --- a/cool.c +++ b/cool.c @@ -1,7 +1,10 @@ #include +#include int main() { - printf("helloworld"); + clrscr(); + printf("hello world"); + getch(); }