aboutsummaryrefslogtreecommitdiffstats
path: root/reworking/sumexp.c
blob: 80789097f4c3be89bfd9f9f9e4d2940f77ab7e39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <stdlib.h>
#include <gmp.h>

// Compile Notes: use `gcc <program>.c -lgmp`

mpz_t num;

int main(){
    
    // From docs, this assigns num the value of (op1*2) ^ op2
    mpz_mul_2exp(num, )
    return 0;
}