what are bitwise shift operators?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What Is The Difference Between Null And Void Pointer?

649


What is the difference between int main and void main?

578


What are structures and unions? State differencves between them.

619


Can you define which header file to include at compile time?

591


What is the difference between malloc() and calloc()?

619






What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?

610


Explain what are its uses in c programming?

600


How can you invoke another program from within a C program?

620


Write a program to print numbers from 1 to 100 without using loop in c?

644


#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1269


Explain the difference between exit() and _exit() function?

638


What are the uses of null pointers?

595


if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0

1456


Where static variables are stored in c?

593


What are the difference between a free-standing and a hosted environment?

747