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 is a 'null pointer assignment' error?
What is the use of volatile?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
what is function pointer?
who is the father of c
What is the use of clrscr?
Explain how do you view the path?
What is the difference between GETS();AND SCANF();
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
Explain what does the function toupper() do?
say the following declaration is correct nr not. int b=a,n=0;