摘要:
main.c部分代码: int main(){ void **pdh; pdh=(void **)malloc(20); int ret; ret = SDF_OpenDevice(pdh); if(ret != SDR_OK) { printf("打开设备失败\n"); } else { prin 阅读全文
摘要:
计算2^1217 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <openssl/bn.h> int main() { BN_CTX *r; BIGNUM *a; BIGNUM *b; BIGNUM *c; c 阅读全文
摘要:
将gmp安装到学号目录下: 在ubuntu下实现: 代码: #include<gmp.h> int main() { mpz_t a,c, b[11], c1[11], d; mpz_init(a); mpz_init(c); mpz_init(d); mpz_init_set_str(d, "1" 阅读全文