Zur Übersicht - INFO - Neueste 50 Beiträge - Neuer Beitrag - Suchen - FAQ - Zum CC1-Forum - Zum CC-Pro-Forum

Re: Arrays zweidimensional Kategorie: Programmierung (von magic - 29.05.2002 7:58)
Als Antwort auf Arrays zweidimensional von Tieli - 28.05.2002 19:36

Hallo, wie wäre es z.B. in der Art:

type zeile { int s[7]; }
type tabelle { zeile z[13]; }

thread main
{
 tabelle t;
 int i;
 int k;
 int x;

// ...

 x = t.z[i].s[k];
}


    Antwort schreiben


Antworten:

Re: Arrays zweidimensional (von Tieli - 29.05.2002 8:16)
    Re: Arrays zweidimensional (von magic - 29.05.2002 20:45)