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 |
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
Describe dynamic data structure in c programming language?
What is malloc calloc and realloc in c?
c program to print a name without using semicolon
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
Where define directive used?
Why ca not I do something like this?
What is pass by reference in functions?
Do you know the purpose of 'register' keyword?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
how the compiler treats any volatile variable?Explain with example.
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }