what is bitwise operator?
Answer / harish
An operator that manipulates individual bits. The operators that we are are familiar with, such as the addition operator (+),multiplication (*),division (/) etc ... work with bytes or groups of bytes. Occasionally, however, programmers need to manipulate the bits within a byte. The C programming language supports the following bitwise operators:
>> Shifts bits right
<< Shifts bits left
& Does an AND compare on two groups of bits
| Does an OR compare on two groups of bits
^ Does an XOR compare on two groups of bits
~ Complements a group of bits
and lots more.....
| Is This Answer Correct ? | 5 Yes | 1 No |
what is stack , heap ,code segment,and data segment
How can you restore a redirected standard stream?
Difference between null pointer and dangling pointer?
wap in c to accept a number display the total count of digit
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What is the 'named constructor idiom'?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
What is the sizeof () operator?
What is use of #include in c?
write a program to display the array elements in reverse order in c language