typedef struct 
{
  float re;    
  float im;    
} complex;       
...
complex x = {1.25, 2.50};  // x.re = 1.25, x.im = 2.50