diff options
| -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 -} | 
