#include typedef struct { int part1, part2 ; } mytype ; mytype foo () ; proc() { mytype y ; y = foo() ; printf("y.part1 = %d, y.part2 = %d\n", y.part1, y.part2) ; } main() { proc() ; }