Explain 'this' pointer and what would happen if a pointer is deleted twice?
what is C++ objects?
What is a constructor initializer list and when we use constructor initializer list?
Why the usage of pointers in C++ is not recommended ?
What do you mean by inheritance in c++?
Can turbo c++ run c program?
What do you mean by “this” pointer?
Is dev c++ free?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
what is object?
Explain the different access specifiers for the class member in c++.
What are guid? Why does com need guids?
What are templates? where we should use it?