Reply to Re: no for loop and != in dink c?
If you don't have an account, just leave the password field blank.
"I have no clue if it accepts 0 and 1 as false/true. I always just use "== 0" and "== 1" and such."
You can do
which is exactly the same as
If that's what you meant?
However I don't think you can do
You can do
if (&var)
which is exactly the same as
if (&var != 0)
If that's what you meant?
However I don't think you can do
if (!&var)