what is the output of below code
int x=8,y;
x>>=2;
y=x;
what is y value.
NOTE:EXPLANATION IS COMPALSARY with binary bits
Answer Posted / rajiv
2
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
How many levels of indirection in pointers can you have in a single declaration?
Which is better oop or procedural?
What is the difference between a function and a method in c?
What is the difference between #include and #include 'file' ?
Explain what is the most efficient way to store flag values?
What is the correct code to have following output in c using nested for loop?
What are the data types present in c?
Write a program to swap two numbers without using third variable in c?
What type of function is main ()?
Does * p ++ increment p or what it points to?
What does malloc () calloc () realloc () free () do?
What is the difference between typedef and #define?
How many types of errors are there in c language? Explain
How do I get a null pointer in my programs?
What are the types of unary operators?