while (Serial.available()==0);
{
char d = Serial.read();
Why is there a useless curly brace after the while statement?
while (Serial.available()==0);
{
char d = Serial.read();
Why is there a useless curly brace after the while statement?