What is destructor in oop?
No Answer is Posted For this Question
Be the First to Post Answer
Why is encapsulation used?
What normal C constructs work differently in C++?
How many human genes are polymorphic?
write a short note on Overloading of Binary Operator?
What is public, protected, private?
What is polymorphism what is it for and how is it used?
Precompilation ?
Why do we use virtual functions?
What is multilevel inheritance explain with example?
How is data security provided in Object Oriented languages? ?
why reinterpret cast is considered dangerous?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile