00001 struct Coord 00002 { 00003 int a; 00004 float f; 00005 } 00006 GetLastCoord() 00007 { 00008 Coord c; 00009 00010 c.a = 0; 00011 c.f = 2.7f; 00012 00013 return c; 00014 }