...
Code Block | ||||
---|---|---|---|---|
| ||||
#include <complex.h> #include <tgmath.h> void func(void) { double complex c = 2.0 + 4.0 * I; double complex result = loglog2(real(c)/log(2); } |
Noncompliant Code Example
...
...
Code Block | ||||
---|---|---|---|---|
| ||||
#include <complex.h> #include <tgmath.h> void func(void) { double complex c = 2.0 + 4.0 * I; double complex result = loglog2(real(c)/log(2); } |
...