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
Define recursion in c.
What is array of pointers to string?
What does c mean before a date?
What is structure pointer in c?
What Is The Difference Between Null And Void Pointer?
What is the g value paradox?
What is the difference between ++a and a++?
What are the 5 elements of structure?
Is that possible to store 32768 in an int data type variable?
What are the advantages and disadvantages of a heap?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
Explain what does it mean when a pointer is used in an if statement?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
In a switch statement, explain what will happen if a break statement is omitted?