Home » C Programming » Operators » Question
  1. What will be the final value of c in the following s statement? (Initial value: s = 2)
    s <<= 1;
    1. s = 4;
    2. s = 1;
    3. s = 2;
    4. s = 3;
    5. None of these
Correct Option: A

s = 4;



Your comments will be displayed only after manual approval.