Assigning names to structure types

Nasza ocena:

5
Pobrań: 7
Wyświetleń: 2394
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Assigning names to structure types - strona 1

Fragment notatki:

Assigning names to structure types typedef struct { float re, im; } tcompl; tcompl a, b, c; a.re = 10.5; a.im = 36.6; b = c = a; ...works like: struct compl { float re, im; }; struct compl a, b, c; a.re = 10.5; ... or: struct { float re, im; } a, b, c; ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz