There is REAL*16 type for quadruple precision entities in Fortran. Is there similar type in Intel C++?
My ultimate goal is to use Fortran library relying on REAL*16 from C++ application. This means that I need equivalent quadruple precision type in both languages. Is there any?
Is it _Quad? If yes, is there any documentation about it?
As a workaround, can I safely assume that REAL*16 can be represented in C++ by just two values of int64_t?
So that I can pass arguments to Fortran functions using something like struct{ int64_t a, int64_t b}
I would appreciate any help on this.


