Overloading - overview

Nasza ocena:

3
Wyświetleń: 448
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Overloading  - overview - strona 1

Fragment notatki:

Overloading
typedef struct { float re, im; } cplx; cplx mult(cplx c, float x) { c.re *= x; c.im *= x; return c; } cplx mult(cplx a, cplx b) { cplx res; res.re = a.re * b.re - a.im * b.im; res.im = a.re * b.im + a.im * b.re; return res; } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz