Hi guys,
i could not follow up this problem ...
int Var = 0;
void setup() {
// put your setup code here, to run once:
Serial.begin (115200);
}
void loop() {
// put your main code here, to run repeatedly:
if (Var == 1)
{
Serial.println ("VAR 111111111");
delay (500);
}
if (Var == 0);
{
Serial.println ("VAR 0000000000");
delay (500);
}
}
Give me this result:

Please could someone explain me why, because of Var = 0, program is reading IF statement with condition if (Var == 1)...
Thanks for help
Regards