#ifndef __COMPLEX_H #define __COMPLEX_H struct complex { double re; double im; }; // Initializeaza campurile unei structuri date. void complex_initialize(struct complex *number, double re, double im); // Intoarce o structura ce contine numarul complex conjugat. struct complex complex_conjugate(struct complex *number); #endif // __COMPLEX_H