xxxxxxxxxx
import std.stdio;
import core.stdc.complex;
void main()
{
cdouble r = cpowf(2. + 0i, 2. + 0i);
printf("%f+%fi\n", cast(double)creal(r), cast(double)cimag(r));
}