8 lines
91 B
C++
8 lines
91 B
C++
#include <mpfr.h>
|
|
|
|
int main() {
|
|
mpfr_t x;
|
|
mpfr_init(x);
|
|
mpfr_clear(x);
|
|
return 0;
|
|
}
|