Hello,
I get the following error-post: declaration may not appear after executable statement in block.
But I do not know whats wrong in my code. The code is this:
// In einer for-Schleife wird der Speicher mit 19% der Anzahl der Messwerte mit Zufallszahlen gefüllt
int anz;
for ( anz=0;anz == (1000/10)*1.9; anz++)
{
int rand(int); // Funktion rand des Typs integer liefert Rückgabewerte des Typs integer
rand(anz); // Array der Messwerte wird mit Zufallszahlen gefüllt
}
I guess the declaration of int anz is not right. But I do not know why.
Can someone help me...
Greetings,
Isabelle