what are bitwise shift operators?

Answers were Sorted based on User's Feedback



what are bitwise shift operators?..

Answer / rina

bitwise shift operators
&,|,^,<<,>>

Is This Answer Correct ?    7 Yes 4 No

what are bitwise shift operators?..

Answer / vadivel t

To Rina answer:

&, |, ^ are not bit wise shift operator.
just they are unary bit wise operators thats it. Bitwise
shift operators are only >> and <<.

--
VEL

Is This Answer Correct ?    2 Yes 0 No

what are bitwise shift operators?..

Answer / sagar

bitwise shift operators are >>,<<

Is This Answer Correct ?    2 Yes 0 No

what are bitwise shift operators?..

Answer / bhupende r singh

The bitwise shift operators move the bit values of a binary
object.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

where does malloc() function get the memory?

1 Answers  


What is the difference between getch() and getche()?

1 Answers   NSPL,


What is the use of ?: Operator?

0 Answers  


What is the collection of communication lines and routers called?

0 Answers  


Is fortran faster than c?

0 Answers  






Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......

2 Answers  


Do you have any idea about the use of "auto" keyword?

0 Answers  


How can you avoid including a header more than once?

0 Answers  


write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?

5 Answers   HCL,


Why is extern used in c?

0 Answers  


Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?

4 Answers   TCS,


to write a program, that finds the minimum total number of shelves, including the initial one, required for this loading process. The packets are named A, B, C, D, E &#133;&#133;.. Any numbers of packets with these names could be kept in the shelf, as in this example: [ZZLLAAJKRDFDDUUGGYFYYKK]. All packets are to be loaded on cars. The cars are lined in order, so that the packets could be loaded on them. The cars are also named [A, B, C, D, E,&#133;&#133;&#133;&#133;.].

2 Answers   Infosys, TCS,


Categories