Nov 26, 2019 at 7:32pm
What is the error?
Also, doing <anything> && 1 is just redundant. x && 1 == x.
Last edited on Nov 26, 2019 at 7:33pm
Nov 26, 2019 at 7:35pm
error is elsewhere. this part checks out ok. Probably a borked {} pair or () pair above it, or possibly a ;
Nov 26, 2019 at 7:37pm
Error is "error: expression cannot be used as a function.
Thank you for your information, I know it, I did it because i tried to solve the error and it gave same error.
Nov 26, 2019 at 7:43pm
When I cut this part the code has zero error .
Nov 26, 2019 at 7:52pm
You're missing || between each line. (I assume you want ||, perhaps you want &&)
Last edited on Nov 26, 2019 at 7:52pm
Nov 26, 2019 at 7:55pm
Oh god. I see now. Thank you for your help. Now I have zero error.