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 |
we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?
What are the benefits of c language?
Do you know the purpose of 'register' keyword?
What is call by reference in functions?
Explain how can you check to see whether a symbol is defined?
write function to reverse char array ... without using second array
Does free set pointer to null?
Write a C program in Fibonacci series.
how to implement stack operation using singly linked list
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
helllo sir give me some information of the basic information the c as printf ,scanf , %d ,%f and why is the main use of these.
Differentiate between declaring a variable and defining a variable?