In addition to what ne555 mentioned, you have some other problems.
Line 61: Sommedesnormes returns nothing (void). Line 13: You can't cout a void.
Line 65-66: you're declaring c1 and c2, but Complexe has no default constructor.
Note: You don;t need a default constructor if you initialize them as shown below.
Lines 72-73: Why are you including the header twice?
Lines 79-80: You're declaring local instances of c1 and c2. These go out of scope when the constructor exists.
Presumably you meant to initialize members c1 and c2.