From 025ed527b9f1d88a4b6e370ef7e5afca01cf4f7f Mon Sep 17 00:00:00 2001 From: Animesh87 <53235414+Animesh87@users.noreply.github.com> Date: Fri, 2 Oct 2020 10:27:43 +0530 Subject: [PATCH 1/3] Enhance readability --- src/00.language/09.functions/hello_function_recursion.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/00.language/09.functions/hello_function_recursion.c b/src/00.language/09.functions/hello_function_recursion.c index 19393e9..e47df29 100644 --- a/src/00.language/09.functions/hello_function_recursion.c +++ b/src/00.language/09.functions/hello_function_recursion.c @@ -1,6 +1,6 @@ #include - -void recurse(int count) +void recurse(int); //funtion prototype +void recurse(int count) //function defenition { if (count >= 10) { printf("Bingo !\n"); @@ -12,6 +12,6 @@ void recurse(int count) int main(void) { - recurse(1); + recurse(1); //function call or recursive call as it is recursive function return 0; } From a0d3f74923061b0ed6c8dae4f83b947218da7a70 Mon Sep 17 00:00:00 2001 From: Animesh87 <53235414+Animesh87@users.noreply.github.com> Date: Fri, 2 Oct 2020 10:30:00 +0530 Subject: [PATCH 2/3] Update README --- README | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README b/README index 89a92a4..3c9b831 100644 --- a/README +++ b/README @@ -1,3 +1,5 @@ +# Learn C programming from basic to advanve. + :: C Programming From 53c38ad55c7b71c268dbfc40ad7a783466f951a2 Mon Sep 17 00:00:00 2001 From: Animesh87 <53235414+Animesh87@users.noreply.github.com> Date: Fri, 2 Oct 2020 13:14:42 +0530 Subject: [PATCH 3/3] Update README --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 3c9b831..619a538 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -# Learn C programming from basic to advanve. +# Learn C programming from basic to advance :: C Programming