Difference between shift left and shift right?
Answer / devesh kumar patel
in shift left we multiply the no by 2^n and in right shift
we multiply the no by 2^-n (where 'n' is no. of shift)
| Is This Answer Correct ? | 7 Yes | 1 No |
What is the best ide for c++?
What is the difference between set and map in c++?
what is C++ exceptional handling?
Who was the creator of c++?
In java a final class is a class that cannot be derived. How can you make a similar class in C++
What do you mean by internal linking and external linking in c++?
program explaining feautures of c++
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
What is the main purpose of c++?
What is class syntax c++?
What is microsoft c++ redistributable?
What is the disadvantage of using a macro?