libmpc

C library for arbitrary-precision complex number arithmetic

brewmacoslinux
Try with needOr install directly
Source

About

C library for the arithmetic of high precision complex numbers

Examples

check if libmpc is installed and find its location$ brew list libmpc
see what files libmpc installs on your system$ brew list libmpc --verbose
view library version and dependencies$ brew info libmpc
verify libmpc is properly linked in development environment$ pkg-config --cflags --libs mpc
compile C code that uses libmpc for complex math$ gcc myprogram.c -o myprogram $(pkg-config --cflags --libs mpc)