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 |
When is a null pointer used?
What are the application of void data type in c?
Tell me about low level programming languages.
What is clrscr ()?
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
Write a program to check palindrome number in c programming?
main() { float a=3.2e40; printf("%d",a); }
to convert a string without using decrement operater and string functions
What are the loops in c?
what is the difference between unix os and linux os
What is the use of pragma in embedded c?
Explain what is a stream?