what is the output of below code
int x=8,y;
x>>=2;
y=x;
what is y value.
NOTE:EXPLANATION IS COMPALSARY with binary bits
Answer Posted / kittu
x=8 means x is equivalent to 00001000 in bit wise environment.
x>>=2 is equivalent to x=(x>>2)
x>>2 makes a bitwise shift to x 2 times.that is now the bit
code is 00000010. that is 2.
and this is assigned to x.So when y is assigned by x viz
y=x; y value gets changed to 2.
Hence 2 is printed.
EXPLANATION:-When >> (right shift operator) is applied to a
byte
the bits in the byte get shifted to right by the number
specified on right side..
Ex:- 6>>1 implies
binary code of 6 is : 00000110
when shifted right : 00000011 which is 3 that is 6 divided
by 2.
Note that when shift operator is used the bits shift but not
rotate...That is once shift operator is applied the bits get
lost...
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
If null and 0 are equivalent as null pointer constants, which should I use?
the question is that what you have been doing all these periods (one year gap)
What is the g value paradox?
How can you avoid including a header more than once?
Why is c fast?
Can two or more operators such as and be combined in a single line of program code?
What does c mean in standard form?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
Why c is known as a mother language?
What are the types of arrays in c?
write a c program to find the sum of five entered numbers using an array named number
What is difference between union All statement and Union?
What is the right way to use errno?
what are the facialities provided by you after the selection of the student.
How can I swap two values without using a temporary?