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

how to write a bubble sort program without using temporary variable?

1 Answers   Aricent,


main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }

3 Answers   CSC,


What is a wrapper function in c?

1 Answers  


What is volatile variable in c with example?

1 Answers  


What are the primitive data types in c?

1 Answers  


what is the advantage of software development

1 Answers  


1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop

2 Answers  


What are the preprocessors?

9 Answers   HP,


How can you find out how much memory is available?

1 Answers  


main() { char *p; p="Hello"; printf("%c\n",*&*p); }

2 Answers   ME,


what is disadvantage of pointer in C

13 Answers   Tech Mahindra,


How to create struct variables?

1 Answers  


Categories