why reinterpret cast is considered dangerous?
No Answer is Posted For this Question
Be the First to Post Answer
how do you handle yourself when you feel the wald is aganist you
What is encapsulation with real life example?
What is Hashing and how is it done? Pictorial form?
what is the function of 'this' operator ?
What is abstract class in oops?
What is the real life example of polymorphism?
String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?
What does and I oop mean?
Generally, in all C++ programs, texts are in white colour. Can we change the colour of the text(either input or output or both)? If so, help me out.
#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
What is overriding vs overloading?
What is the problem with multiple inheritance?