1 2 3 4 5 6 7 8 9 10
typedef struct { long double l; } ld; ld a (ld x, ld y) { ld b; b.l = x.l + y.l; }