when to use 'mutable' keyword and when to use 'const cast'
in c++
No Answer is Posted For this Question
Be the First to Post Answer
Why we use classes in oop?
What is a scope resolution operator?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }
create a c++ program that will accepts 9 inputs using 3 by 3 array.
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
What is data binding in oops?
Templates mean
what is function overloading..?
What is difference between abstraction and encapsulation?
How to overload postfix operator in c++
write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory
monkey starts climbing up a tree 20ft tall,each hour ,it hops 3ft and slips back by 2ft .how much time it wil tak to reach top of the tree?