Home / C Programming / Control Instructions :: Discussion

Discussion :: Control Instructions

  1. Which of the following is not logical operator?

  2. A.
    &
    B.
    &&
    C.
    ||
    D.
    !

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    Bitwise operators:
    & is a Bitwise AND operator.

    Logical operators:
    && is a Logical AND operator.
    || is a Logical OR operator.
    ! is a NOT operator.

    So, '&' is not a Logical operator.


Be The First To Comment