mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-19 21:09:51 +08:00
The sub-title "Recursion in C" was missing (#18996)
In line 96, the subtitle was not appropriately mentioned.
This commit is contained in:
parent
5ddb1a1575
commit
dd8bb63713
@ -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)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user