Home / C Programming / C Fundamentals :: Discussion

Discussion :: C Fundamentals

  1. If ASCII value of 'x' is 120, then what is the value of the H, if
    H = ('x' – 'w' ) / 3;

  2. A.

     1

    B.

     2

    C.

     3

    D.

     4

    E.

     0

    View Answer

    Workspace

    Answer : Option E

    Explanation :

    Because 'x'-'w' = 120-119. And hence 1/3 results in 0(integer division)


Be The First To Comment