1 typedef struct abc { 2 int def; 3 int ghi; 4 } jkl; 5 6 jkl mno; 7 pqr(void)8 jkl pqr(void) 9 { 10 return (jkl){.def = 1, .ghi = 2}; 11 } 12