IHYPRESS PROGRAMMING
Tutorials and C programs with code and output for beginners
c programming
HOME | ASP | C | CSS | GNUPLOT | HTML | JAVASCRIPT | PERL | PHP | PYTHON | RUBY | SVG
CStructures & Linked Lists : Complex Numbers Structure
<10.07>
/* working with complex numbers in C */ #include <stdio.h> #include <complex.h> int main (void) { double complex c1 = 1.0 + 3.0 * I; double complex c2 = 1.0 - 4.0 * I; double complex sum, difference, product, quotient, conj1, conj2; printf ("c1 = %.2lf %+.2lfi\n", creal(c1), cimag(c1)); printf ("c2 = %.2lf %+.2lfi\n", creal(c2), cimag(c2)); sum = c1 + c2; printf ("c1 + c2 = %.2lf %+.2lfi\n", creal(sum), cimag(sum)); difference = c1 - c2; printf ("c1 + c2 = %.2lf %+.2lfi\n", creal(difference), cimag(difference)); product = c1 * c2; printf ("c1 * c2 = %.2lf %+.2lfi\n", creal(product), cimag(product)); quotient = c1 / c2; printf ("c1 / c2 = %.2lf %+.2lfi\n", creal(quotient), cimag(quotient)); conj1 = conj(c1); printf ("Conjugate of c1 = %.2lf %+.2lfi\n", creal(conj1), cimag(conj1)); conj2 = conj(c2); printf ("Conjugate of c2 = %.2lf %+.2lfi\n", creal(conj2), cimag(conj2)); return (0); }
Hergestellt in Deutschland / Made in Germany
c1 = 1.00 +3.00i c2 = 1.00 -4.00i c1 + c2 = 2.00 -1.00i c1 + c2 = 0.00 +7.00i c1 * c2 = 13.00 -1.00i c1 / c2 = -0.65 +0.41i Conjugate of c1 = 1.00 -3.00i Conjugate of c2 = 1.00 +4.00i
COPYRIGHT © 2015-2025 IHY PRESS Frankfurt am Main 60329 Deutschland