Strukturen (2/5)

  struct complex
  {
    double real;
    double imag;
  } x;                // das erste Beispiel in einem Block

struct { double real; double imag; } x = { 3.4, 5.6}; // namenlose Struktur + Initialisierung