Skip to content

Commit

Permalink
16: codeblock correct
Browse files Browse the repository at this point in the history
  • Loading branch information
razetime committed Jan 29, 2024
1 parent f3d5b30 commit d74ab0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 16-c-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ variables, and then use the [Integer Functions](https://gmplib.org/manual/Intege
as per the documentation. The result will be an `mpz_t`. This can be converted
to a C string, then converted to a K string. So the last few lines of `add()` become:

```
```c
mpz_t big_a,big_b,r;
mpz_init_set_str(big_a,ac,10);mpz_init_set_str(big_b,bc,10);mpz_init(r);
mpz_add(r,big_a,big_b);
Expand Down

0 comments on commit d74ab0e

Please sign in to comment.