diff options
author | mjfernez <mjfernez@gmail.com> | 2020-02-09 15:16:26 -0500 |
---|---|---|
committer | mjfernez <mjfernez@gmail.com> | 2020-02-09 15:16:26 -0500 |
commit | 93ea7fe5957b62f18e8fbd17a21696bd7de6332d (patch) | |
tree | d90aed60d687bcf195f1150777f37cbe8a149814 /sumexp.c | |
parent | 125ec5bc3d8bfc224b7d32bcfbbc37b9fb5d441f (diff) | |
download | Project_Euler_Solutions-93ea7fe5957b62f18e8fbd17a21696bd7de6332d.tar.gz |
Organized everything, update README
Diffstat (limited to 'sumexp.c')
-rw-r--r-- | sumexp.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/sumexp.c b/sumexp.c deleted file mode 100644 index f050773..0000000 --- a/sumexp.c +++ /dev/null @@ -1,21 +0,0 @@ -#include <stdlib.h> -#include <stdio.h> -#include <string.h> - -typedef struct bigint bigint; - -struct bigint{ - char digit; - bigint *nextdigit; -}; - -// struct methods -int length(); - -// struct globals -bigint *end = NULL; -bigint *current = { .digit = '0', .nextdigit = end}; - -int length(bigint num){ - num->digits -} |