#include "sum-struct.h" AB DEFAULT_AB = {.a = 2, .b = 3}; int sumAB(AB ab) { return ab.a + ab.b; }