C-Programmierung
Strukturvergleich
← Strukturzuweisung | ● | Strukturoperatoren →
Der direkte Vergleich von Strukturen ist nicht möglich.
Anstelle dessen muss komponentenweise verglichen werden.
struct datum d1,d2;
// direct comparison not possible
if (d1==d2) ... // bad idea
// component-wise comparison
if (d1.day==d2.day &&
d1.month==d2.month &&
d1.year==d2.year) ...
// direct comparison not possible
if (d1==d2) ... // bad idea
// component-wise comparison
if (d1.day==d2.day &&
d1.month==d2.month &&
d1.year==d2.year) ...
← Strukturzuweisung | ● | Strukturoperatoren →