brintos

brintos / llvm-project-archived public Read only

0
0
Text · 93 B · f1f0505 Raw
9 lines · cpp
1#include <mpc.h>2 3int main() {4  mpc_t x;5  mpc_init2(x, 256);6  mpc_clear(x);7  return 0;8}9