From dd8bb63713723ed1bdb6f70afbfddb5cb69be139 Mon Sep 17 00:00:00 2001 From: matrix-mack <43748290+matrix-mack@users.noreply.github.com> Date: Sun, 14 Oct 2018 12:42:16 +0530 Subject: [PATCH] The sub-title "Recursion in C" was missing (#18996) In line 96, the subtitle was not appropriately mentioned. --- client/src/pages/guide/english/c/functions/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/guide/english/c/functions/index.md b/client/src/pages/guide/english/c/functions/index.md index f5c8dfed46..49ad415db4 100644 --- a/client/src/pages/guide/english/c/functions/index.md +++ b/client/src/pages/guide/english/c/functions/index.md @@ -93,7 +93,7 @@ You may have observed a similar issue with things like if statements and any of Ideally, you'll always pass into your functions as parameters, but you may not always be able to. Picking the best solution is your job as a programmer. -Recursion in C +## Recursion in C When function is called within the same function, it is known as recursion in C. The function which calls the same function, is known as recursive function. ``` int factorial (int n)