Alternative to Complex.h in Visual Studio

I know very little about VS, and was surprised when my Linux code did not compile on Windows. The problem of seams due to the lack <complex.h>of VS. My question is this: do people reinstall on their Windows applications or is there a version of the public domain.

+3
source share
3 answers

since C ++ is not an option, and is not GCC, you cannot just ... Download the header and include it in your project yourself #include"complex.h":? You can download the minimal version of MinGW and just copy the header file.

-2
source

<complex.h> - ISO/IEC 9899: 1999, Visual Studio ( , 2008 ) ISO/IEC 9899: 1990 , complex.h .

+2

++ C, complex. Visual ++ C89, C99, complex.h .

++ , (, Windows GCC) .

0

Source: https://habr.com/ru/post/1713531/


All Articles