excuseme !

But can we use the Array without malloc function ??

for ex :

Code:
PLAYER  Player[Anz_spieler];
// Not use the malloc here because Player is a array not pointer !
Player[1].r = 2;
Player[3].u = 3;
....