For if statements, can I have 2 or more conditions that it needs to satisfy before carrying out further action?
e.g.
if (cond1, cond2)
{
action;
}
Do i always have to use nested if statements? it would be tedious, because i sometimes have 3-4 conditions that needs to be satisfied.
thanks