What is Bitwise Operator and how it works?
bitwise operator is nothing but do logical manipulations in bits (lower format).
it needs 2 operands.
for eg : 7 & 2 &- bitwise AND
0000 0000 0000 0000 0111
0000 0000 0000 0000 0010
-------------------------
0000 0000 0000 0000 0010
this performs the operation in BIT level , so only C is called as middle level language and typed to be a strong ones......
| - bitwise OR
^ - bitwise EX-OR
~ - one's complement operator.
thank you
| Is This Answer Correct ? | 4 Yes | 0 No |
What are dangling pointers in c?
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What is a dynamic array in c?
what r callback function?
What is typeof in c?
Who invented b language?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
how many times of error occur in C
What does the && operator do in a program code?
develop algorithms to add polynomials (i) in one variable
What are the different categories of functions in c?