We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ec0753 commit 0c3f69fCopy full SHA for 0c3f69f
examples/example1.c
@@ -5,7 +5,6 @@
5
* Source: https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm#Example
6
*/
7
#include <stdio.h>
8
-#include "integer.h"
9
#include "extendedGcdInt.h"
10
11
/**
examples/example2.c
@@ -10,7 +10,8 @@
int main()
12
{
13
- integer a = 3, b = 4, m = 5;
+ integer a = 3, b = 4;
14
+ modulus m = 5;
15
16
i_print(a, "a");
17
i_print(b, "b");
examples/example3.c
0 commit comments