Main(){ signed int bit=512, i=5; for(;i;i--) { printf("%dn", bit >> (i - (i -1))); }}

A) 512, 512, 512, 512, 512
B) 256, 256, 0, 0, 0
C) 512, 256, 0, 0, 0
D) 256, 256, 256, 256, 256
Explanation: bit's value is not changed

Showing Answers 1 - 1 of 1 Answers

sreelu

  • Mar 15th, 2006
 

ans:256,256,256,256,256 depending upon i value it prints 5times

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions