what are bitwise shift operators?
Answers were Sorted based on User's Feedback
Answer / bhupende r singh
The bitwise shift operators move the bit values of a binary
object.
| Is This Answer Correct ? | 1 Yes | 0 No |
how to write a bubble sort program without using temporary variable?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
What is a wrapper function in c?
What is volatile variable in c with example?
What are the primitive data types in c?
what is the advantage of software development
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
What are the preprocessors?
How can you find out how much memory is available?
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
what is disadvantage of pointer in C
How to create struct variables?