vault backup: 2022-08-05 14:17:57

This commit is contained in:
Jet Hughes 2022-08-05 14:17:57 +12:00
parent 5a511c1b1e
commit 87a1d8e96d
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ int main(int argc, const char *argv[])
```
routines can be scoped to just the source code file
- `statis int eleven(void`
- `static int eleven(void`
routines must be declared bfore being used
- `extern int eleven(void):`

View File

@ -41,7 +41,7 @@ in the recirsive case, since all the elements before $p$ are smaller than it and
def fib(n)
if n <= 1
return 1
return fib(n-1) + fib(n-2)
return fib(n-1) + fib(n-2)
```
line 1 -> always executed