User profile: ankushnandan

User info
User name:ankushnandan
History
Joined:
Number of posts:64
Latest posts:

GDB
what is difference in option -ggdb3 and -g(flag set for debugging)

"new" keyword
Hi Keskiverto, in [code]int a; a = 42;[/code] memory allocation is on stack and at compile time its...

"new" keyword
I meant that when compiler sees line [code]X* obj = new X()[/code] how it handle this, as the [...

"new" keyword
[code] class X {}; X* obj = new X() [/code] Question:- 1) is this object created at c...

Abstract class
Abstract class has pure virtual function defined something like [code] virtual void f() = 0; [/...