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 |
write a program in c to print **** * * * * ****
what is the structure pointer?
What are the functions to open and close the file in c language?
Write a program to print numbers from 1 to 100 without using loop in c?
What are valid operations on pointers?
Can stdout be forced to print somewhere other than the screen?
What does do in c?
What does %p mean c?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
What is the default value of local and global variables in c?
How many main () function we can have in a project?
WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES