brintos

brintos / llvm-project-archived public Read only

0
0
Text · 228 B · eadc896 Raw
9 lines · c
1#include <complex.h>2 3int main() {4  float complex complex_float = -1.5f + -2.5f * I;5  double complex complex_double = -1.5 + -2.5 * I;6  long double complex complex_long_double = -1.5L + -2.5L * I;7  return 0; // break here8}9