1 2 3 4 5 6 7 8 9 10 11
struct output { double a0; double a1; double a2; }; struct output run(float a) { struct output o; o.a0 = a; return o; }