when using the && if the first operand is evaluated into false, then the whole operation is false,
while using the || if the first operand is evaluated into true, the the whole operation is true,
basically is the condition happened in this way, the second operand will never be evaluated.. ryt?
but how bout using a single character ? "&" or "|"
it will always evaluate every operands...
my question is
in what kind of situation this operators are mostly used?
a single "&" or a single "|".